├── LICENSE ├── README.md ├── app ├── .DS_Store ├── .cache │ └── .dataModel ├── .project ├── .settings │ └── org.eclipse.php.core.projectOptions.prefs ├── bin │ ├── .DS_Store │ ├── MIGRATION_README.txt │ ├── add-tlds.php │ ├── ch-obtain-transfercode.php │ ├── dotnl-migrate.php │ ├── encode_db_configs.php │ ├── enom-get-extattr.php │ ├── eppcmd.php │ ├── fix-autorenew-domains.php │ ├── fix-contacts.php │ ├── fix-dnsbe-tech-contact.php │ ├── fix-renew-bug.php │ ├── fix-se-orgno.php │ ├── fix-site-url.php │ ├── fix_currency.php │ ├── fix_expiredate.php │ ├── fix_prices.php │ ├── import-contacts.php │ ├── manifest2c.php │ ├── phone_convert.php │ ├── reset-pw.php │ ├── sync-jwhois.php │ ├── sync.php │ ├── testenvironment.php │ ├── tsmarty2c.php │ ├── upgrade-to-v3.php │ ├── upgrade-to-v31-lu.php │ ├── upgrade-to-v31.php │ ├── xml2c.php │ └── zendid │ │ ├── zendid_freebsd4x │ │ ├── zendid_freebsd5x │ │ ├── zendid_linux32 │ │ ├── zendid_linux64 │ │ ├── zendid_macosx │ │ └── zendid_solaris ├── clean_cache.sh ├── cron │ ├── class.AssignDiscountProcess.php │ ├── class.CleanZombyUsersProcess.php │ ├── class.DNSPushProcess.php │ ├── class.LogRotateProcess.php │ ├── class.PollQueueEventProcess.php │ ├── class.PreregistrationUpdateProcess.php │ ├── class.RenewProcess.php │ ├── class.TaskQueueProcess.php │ ├── class.WDRPProcess.php │ ├── cron.php │ └── cron.pid ├── etc │ ├── .htaccess │ ├── admin_nav.xml │ ├── client_domain_nav.xml │ ├── client_nav.xml │ ├── config.ini.example │ ├── version │ └── whoisservers.txt ├── events │ ├── class.RESTGlobalObserver.php │ ├── class.RESTInvoiceObserver.php │ ├── class.RESTPaymentObserver.php │ ├── class.RESTRegistryObserver.php │ └── includes │ │ └── class.RESTObserver.php ├── lang │ └── en_US │ │ ├── LC_MESSAGES │ │ ├── default.mo │ │ ├── default.po │ │ └── messages.mo │ │ └── email_templates │ │ ├── bulk_registration.eml │ │ ├── bulk_renew_notice.eml │ │ ├── bulk_update_contact.eml │ │ ├── bulk_update_ns.eml │ │ ├── contact_change_request_complete.eml │ │ ├── domain_registration_action_required.eml │ │ ├── domain_trade_action_required.eml │ │ ├── domain_transfer_action_required.eml │ │ ├── email_change_confirm.eml │ │ ├── expired_notice.eml │ │ ├── expired_notice_reversible.eml │ │ ├── inc │ │ └── invoice_info.tpl │ │ ├── invoice_paid.eml │ │ ├── low_balance_notice.eml │ │ ├── new_contact_change_request.eml │ │ ├── new_invoice.eml │ │ ├── newpassword.eml │ │ ├── order_payment_failed.eml │ │ ├── outgoing_transfer_away.eml │ │ ├── outgoing_transfer_requested.eml │ │ ├── password_change_confirm.eml │ │ ├── pending_operation_complete.eml │ │ ├── poll_message_notify.eml │ │ ├── registration_complete.eml │ │ ├── registration_failed.eml │ │ ├── renew_notice.eml │ │ ├── renewal_complete.eml │ │ ├── renewal_failed.eml │ │ ├── root_domains_await_delete.eml │ │ ├── root_new_contact_change_request.eml │ │ ├── root_newclient.eml │ │ ├── root_update_complete.eml │ │ ├── root_updates_available.eml │ │ ├── signup.eml │ │ ├── signup_pending.eml │ │ ├── trade_complete.eml │ │ ├── transfer_complete.eml │ │ ├── transfer_failed.eml │ │ └── wdrp_notice.eml ├── modules │ ├── class.Module.php │ ├── class.ModuleFactory.php │ ├── payments │ │ ├── BeanStream │ │ │ └── class.PaymentModule.php │ │ ├── OfflineBank │ │ │ └── class.PaymentModule.php │ │ ├── PayPal │ │ │ └── class.PaymentModule.php │ │ ├── ProxyPay3 │ │ │ └── class.PaymentModule.php │ │ ├── Sermepa │ │ │ ├── class.PaymentModule.php │ │ │ └── tests.php │ │ ├── SetCom │ │ │ └── class.PaymentModule.php │ │ ├── TwoCheckout │ │ │ └── class.PaymentModule.php │ │ ├── UnionPay │ │ │ └── class.PaymentModule.php │ │ ├── WebMoney │ │ │ └── class.PaymentModule.php │ │ ├── class.AbstractPaymentModule.php │ │ ├── class.PaymentModuleFactory.php │ │ ├── interface.IDirectPaymentModule.php │ │ ├── interface.IPaymentModule.php │ │ ├── interface.IPostBackPaymentModule.php │ │ └── observers │ │ │ ├── class.DBPaymentObserver.php │ │ │ └── interface.IPaymentObserver.php │ └── registries │ │ ├── AFNIC │ │ ├── class.RegistryModule.php │ │ ├── class.Transport.php │ │ ├── frnic-1.0.xsd │ │ ├── module.xml │ │ └── xml │ │ │ ├── contact-check.xml │ │ │ ├── contact-create.xml │ │ │ ├── contact-delete.xml │ │ │ ├── contact-info.xml │ │ │ ├── contact-update.xml │ │ │ ├── domain-check.xml │ │ │ ├── domain-create.xml │ │ │ ├── domain-delete.xml │ │ │ ├── domain-info.xml │ │ │ ├── domain-restore.xml │ │ │ ├── domain-trade.xml │ │ │ ├── domain-trans-approve.xml │ │ │ ├── domain-trans-query.xml │ │ │ ├── domain-trans-reject.xml │ │ │ ├── domain-trans-request.xml │ │ │ ├── domain-update-contact.xml │ │ │ ├── domain-update-flags.xml │ │ │ ├── domain-update-ns.xml │ │ │ ├── domain-update.xml │ │ │ ├── hello.xml │ │ │ ├── host-check.xml │ │ │ ├── host-create.xml │ │ │ ├── host-delete.xml │ │ │ ├── host-info.xml │ │ │ ├── host-update.xml │ │ │ ├── login.xml │ │ │ ├── logout.xml │ │ │ ├── poll-ack.xml │ │ │ └── poll-request.xml │ │ ├── Afilias │ │ ├── class.RegistryModule.php │ │ ├── class.Transport.php │ │ ├── module.xml │ │ ├── tests.php │ │ └── xml │ │ │ ├── contact-check.xml │ │ │ ├── contact-create.xml │ │ │ ├── contact-delete.xml │ │ │ ├── contact-info.xml │ │ │ ├── contact-update-disclose.xml │ │ │ ├── contact-update.xml │ │ │ ├── domain-check.xml │ │ │ ├── domain-create.xml │ │ │ ├── domain-delete.xml │ │ │ ├── domain-info.xml │ │ │ ├── domain-renew.xml │ │ │ ├── domain-trans-approve.xml │ │ │ ├── domain-trans-query.xml │ │ │ ├── domain-trans-reject.xml │ │ │ ├── domain-trans-request.xml │ │ │ ├── domain-update-contact.xml │ │ │ ├── domain-update-flags.xml │ │ │ ├── domain-update-ns.xml │ │ │ ├── domain-update.xml │ │ │ ├── hello.xml │ │ │ ├── host-check.xml │ │ │ ├── host-create.xml │ │ │ ├── host-delete.xml │ │ │ ├── host-info.xml │ │ │ ├── host-update.xml │ │ │ ├── login.xml │ │ │ ├── logout.xml │ │ │ ├── poll-ack.xml │ │ │ ├── poll-request.xml │ │ │ ├── test-change-pw.xml │ │ │ ├── test-contact-create.xml │ │ │ ├── test-contact-trans-approve.xml │ │ │ ├── test-contact-trans-query.xml │ │ │ ├── test-contact-trans-reject.xml │ │ │ ├── test-contact-trans-request.xml │ │ │ ├── test-contact-update-chg.xml │ │ │ ├── test-contact-update-rem.xml │ │ │ ├── test-error2002.xml │ │ │ ├── test-error2003.xml │ │ │ ├── test-error2005.xml │ │ │ ├── test-error2201.xml │ │ │ ├── test-error2303.xml │ │ │ ├── test-error2305.xml │ │ │ ├── test-error2306.xml │ │ │ └── test-host-update.xml │ │ ├── COCCAEPP1 │ │ ├── class.RegistryModule.php │ │ ├── class.Transport.php │ │ ├── module.xml │ │ ├── tests.php │ │ └── xml │ │ │ ├── contact-check.xml │ │ │ ├── contact-create.xml │ │ │ ├── contact-delete.xml │ │ │ ├── contact-info.xml │ │ │ ├── contact-update-disclose.xml │ │ │ ├── contact-update.xml │ │ │ ├── domain-check.xml │ │ │ ├── domain-create.xml │ │ │ ├── domain-delete.xml │ │ │ ├── domain-info.xml │ │ │ ├── domain-renew.xml │ │ │ ├── domain-trans-approve.xml │ │ │ ├── domain-trans-query.xml │ │ │ ├── domain-trans-reject.xml │ │ │ ├── domain-trans-request.xml │ │ │ ├── domain-update-contact.xml │ │ │ ├── domain-update-flags.xml │ │ │ ├── domain-update-ns.xml │ │ │ ├── domain-update.xml │ │ │ ├── hello.xml │ │ │ ├── host-check.xml │ │ │ ├── host-create.xml │ │ │ ├── host-delete.xml │ │ │ ├── host-info.xml │ │ │ ├── host-update.xml │ │ │ ├── login.xml │ │ │ ├── logout.xml │ │ │ ├── poll-ack.xml │ │ │ └── poll-request.xml │ │ ├── COCCAEPP2 │ │ └── module.xml │ │ ├── COCCAEPP3 │ │ └── module.xml │ │ ├── DotBE │ │ ├── class.RegistryModule.php │ │ ├── class.Transport.php │ │ ├── module.xml │ │ ├── tests.php │ │ └── xml │ │ │ ├── contact-check.xml │ │ │ ├── contact-create.xml │ │ │ ├── contact-delete.xml │ │ │ ├── contact-info.xml │ │ │ ├── contact-update-disclose.xml │ │ │ ├── contact-update.xml │ │ │ ├── domain-check.xml │ │ │ ├── domain-create.xml │ │ │ ├── domain-delete.xml │ │ │ ├── domain-info.xml │ │ │ ├── domain-renew.xml │ │ │ ├── domain-trade-request.xml │ │ │ ├── domain-trans-approve.xml │ │ │ ├── domain-trans-quarantine-request.xml │ │ │ ├── domain-trans-query.xml │ │ │ ├── domain-trans-reject.xml │ │ │ ├── domain-trans-request.xml │ │ │ ├── domain-update-contact.xml │ │ │ ├── domain-update-flags.xml │ │ │ ├── domain-update-ns.xml │ │ │ ├── domain-update.xml │ │ │ ├── hello.xml │ │ │ ├── login.xml │ │ │ ├── logout.xml │ │ │ ├── poll-ack.xml │ │ │ └── poll-request.xml │ │ ├── DotEU │ │ ├── class.RegistryModule.php │ │ ├── class.Transport.php │ │ ├── module.xml │ │ ├── tests.php │ │ └── xml │ │ │ ├── contact-check.xml │ │ │ ├── contact-create.xml │ │ │ ├── contact-delete.xml │ │ │ ├── contact-info.xml │ │ │ ├── contact-update-disclose.xml │ │ │ ├── contact-update.xml │ │ │ ├── domain-check.xml │ │ │ ├── domain-create.xml │ │ │ ├── domain-delete.xml │ │ │ ├── domain-info.xml │ │ │ ├── domain-renew.xml │ │ │ ├── domain-trade-request.xml │ │ │ ├── domain-trans-approve.xml │ │ │ ├── domain-trans-query.xml │ │ │ ├── domain-trans-reject.xml │ │ │ ├── domain-trans-request.xml │ │ │ ├── domain-update-contact.xml │ │ │ ├── domain-update-flags.xml │ │ │ ├── domain-update-ns.xml │ │ │ ├── domain-update.xml │ │ │ ├── hello.xml │ │ │ ├── host-check.xml │ │ │ ├── host-create.xml │ │ │ ├── host-delete.xml │ │ │ ├── host-info.xml │ │ │ ├── host-update.xml │ │ │ ├── login.xml │ │ │ ├── logout.xml │ │ │ ├── poll-ack.xml │ │ │ └── poll-request.xml │ │ ├── DotKZ │ │ ├── class.RegistryModule.php │ │ ├── class.Transport.php │ │ ├── module.xml │ │ ├── tests.php │ │ └── xml │ │ │ ├── contact-check.xml │ │ │ ├── contact-create.xml │ │ │ ├── contact-delete.xml │ │ │ ├── contact-info.xml │ │ │ ├── contact-update-disclose.xml │ │ │ ├── contact-update.xml │ │ │ ├── domain-check.xml │ │ │ ├── domain-create.xml │ │ │ ├── domain-delete.xml │ │ │ ├── domain-info.xml │ │ │ ├── domain-renew.xml │ │ │ ├── domain-trans-approve.xml │ │ │ ├── domain-trans-query.xml │ │ │ ├── domain-trans-reject.xml │ │ │ ├── domain-trans-request.xml │ │ │ ├── domain-update-contact.xml │ │ │ ├── domain-update-flags.xml │ │ │ ├── domain-update-ns.xml │ │ │ ├── domain-update.xml │ │ │ ├── hello.xml │ │ │ ├── host-check.xml │ │ │ ├── host-create.xml │ │ │ ├── host-delete.xml │ │ │ ├── host-info.xml │ │ │ ├── host-update.xml │ │ │ ├── login.xml │ │ │ ├── logout.xml │ │ │ ├── poll-ack.xml │ │ │ └── poll-request.xml │ │ ├── DotMX │ │ ├── class.RegistryModule.php │ │ ├── class.Transport.php │ │ ├── module.xml │ │ ├── tests.php │ │ └── xml │ │ │ ├── contact-check.xml │ │ │ ├── contact-create.xml │ │ │ ├── contact-delete.xml │ │ │ ├── contact-info.xml │ │ │ ├── contact-update.xml │ │ │ ├── domain-check.xml │ │ │ ├── domain-create.xml │ │ │ ├── domain-delete.xml │ │ │ ├── domain-info.xml │ │ │ ├── domain-renew.xml │ │ │ ├── domain-trans-approve.xml │ │ │ ├── domain-trans-query.xml │ │ │ ├── domain-trans-reject.xml │ │ │ ├── domain-trans-request.xml │ │ │ ├── domain-update-contact.xml │ │ │ ├── domain-update-flags.xml │ │ │ ├── domain-update-ns.xml │ │ │ ├── domain-update.xml │ │ │ ├── hello.xml │ │ │ ├── host-check.xml │ │ │ ├── host-create.xml │ │ │ ├── host-delete.xml │ │ │ ├── host-info.xml │ │ │ ├── host-update.xml │ │ │ ├── login.xml │ │ │ ├── logout.xml │ │ │ ├── poll-ack.xml │ │ │ └── poll-request.xml │ │ ├── DotNG │ │ └── module.xml │ │ ├── DotNO │ │ ├── class.RegistryModule.php │ │ ├── class.Transport.php │ │ ├── module.xml │ │ ├── tests.php │ │ └── xml │ │ │ ├── contact-add-org.xml │ │ │ ├── contact-check.xml │ │ │ ├── contact-create.xml │ │ │ ├── contact-delete.xml │ │ │ ├── contact-info.xml │ │ │ ├── contact-update-disclose.xml │ │ │ ├── contact-update.xml │ │ │ ├── domain-check.xml │ │ │ ├── domain-create.xml │ │ │ ├── domain-delete.xml │ │ │ ├── domain-info.xml │ │ │ ├── domain-renew.xml │ │ │ ├── domain-trans-approve.xml │ │ │ ├── domain-trans-query.xml │ │ │ ├── domain-trans-reject.xml │ │ │ ├── domain-trans-request.xml │ │ │ ├── domain-update-contact.xml │ │ │ ├── domain-update-flags.xml │ │ │ ├── domain-update-ns.xml │ │ │ ├── domain-update.xml │ │ │ ├── domain-withdraw.xml │ │ │ ├── hello.xml │ │ │ ├── host-check.xml │ │ │ ├── host-create.xml │ │ │ ├── host-delete.xml │ │ │ ├── host-info.xml │ │ │ ├── host-update.xml │ │ │ ├── login.xml │ │ │ ├── logout.xml │ │ │ ├── poll-ack.xml │ │ │ ├── poll-request.xml │ │ │ └── test-host-update.xml │ │ ├── DotPT │ │ ├── class.RegistryModule.php │ │ ├── class.Transport.php │ │ ├── module.xml │ │ ├── ptdomain-1.0.xsd │ │ └── xml │ │ │ ├── contact-check.xml │ │ │ ├── contact-create.xml │ │ │ ├── contact-delete.xml │ │ │ ├── contact-info.xml │ │ │ ├── contact-update-disclose.xml │ │ │ ├── contact-update.xml │ │ │ ├── domain-check.xml │ │ │ ├── domain-create.xml │ │ │ ├── domain-delete.xml │ │ │ ├── domain-info.xml │ │ │ ├── domain-renew.xml │ │ │ ├── domain-trans-approve.xml │ │ │ ├── domain-trans-query.xml │ │ │ ├── domain-trans-reject.xml │ │ │ ├── domain-trans-request.xml │ │ │ ├── domain-update-contact.xml │ │ │ ├── domain-update-flags.xml │ │ │ ├── domain-update-ns.xml │ │ │ ├── domain-update.xml │ │ │ ├── hello.xml │ │ │ ├── host-check.xml │ │ │ ├── host-create.xml │ │ │ ├── host-delete.xml │ │ │ ├── host-info.xml │ │ │ ├── host-update.xml │ │ │ ├── login.xml │ │ │ ├── logout.xml │ │ │ ├── poll-ack.xml │ │ │ └── poll-request.xml │ │ ├── DotSE │ │ ├── class.RegistryModule.php │ │ ├── class.Transport.php │ │ ├── module.xml │ │ ├── tests.php │ │ └── xml │ │ │ ├── contact-check.xml │ │ │ ├── contact-create.xml │ │ │ ├── contact-delete.xml │ │ │ ├── contact-info.xml │ │ │ ├── contact-update-disclose.xml │ │ │ ├── contact-update.xml │ │ │ ├── domain-check.xml │ │ │ ├── domain-create.xml │ │ │ ├── domain-delete.xml │ │ │ ├── domain-info.xml │ │ │ ├── domain-renew.xml │ │ │ ├── domain-trans-approve.xml │ │ │ ├── domain-trans-query.xml │ │ │ ├── domain-trans-reject.xml │ │ │ ├── domain-trans-request.xml │ │ │ ├── domain-update-contact.xml │ │ │ ├── domain-update-flags.xml │ │ │ ├── domain-update-ns.xml │ │ │ ├── domain-update.xml │ │ │ ├── hello.xml │ │ │ ├── host-check.xml │ │ │ ├── host-create.xml │ │ │ ├── host-delete.xml │ │ │ ├── host-info.xml │ │ │ ├── host-update.xml │ │ │ ├── login.xml │ │ │ ├── logout.xml │ │ │ ├── poll-ack.xml │ │ │ ├── poll-request.xml │ │ │ ├── test-contact-update.xml │ │ │ ├── test-domain-delete.xml │ │ │ ├── test-domain-remove-ds.xml │ │ │ └── test-host-update.xml │ │ ├── DotTEL │ │ ├── class.RegistryModule.php │ │ ├── class.Transport.php │ │ ├── module.xml │ │ ├── testprefs │ │ ├── tests.php │ │ └── xml │ │ │ ├── contact-check.xml │ │ │ ├── contact-create.xml │ │ │ ├── contact-delete.xml │ │ │ ├── contact-info.xml │ │ │ ├── contact-trans-query.xml │ │ │ ├── contact-trans-reject.xml │ │ │ ├── contact-trans-request.xml │ │ │ ├── contact-update-disclose.xml │ │ │ ├── contact-update.xml │ │ │ ├── domain-check.xml │ │ │ ├── domain-create.xml │ │ │ ├── domain-delete.xml │ │ │ ├── domain-info.xml │ │ │ ├── domain-renew.xml │ │ │ ├── domain-trans-approve.xml │ │ │ ├── domain-trans-query.xml │ │ │ ├── domain-trans-reject.xml │ │ │ ├── domain-trans-request.xml │ │ │ ├── domain-update-contact.xml │ │ │ ├── domain-update-flags.xml │ │ │ ├── domain-update-ns.xml │ │ │ ├── domain-update.xml │ │ │ ├── hello.xml │ │ │ ├── host-check.xml │ │ │ ├── host-create.xml │ │ │ ├── host-delete.xml │ │ │ ├── host-info.xml │ │ │ ├── host-update.xml │ │ │ ├── login-ex.xml │ │ │ ├── login.xml │ │ │ ├── logout.xml │ │ │ ├── poll-ack.xml │ │ │ ├── poll-request.xml │ │ │ ├── test-contact-create.xml │ │ │ ├── test-contact-update-chg.xml │ │ │ ├── test-contact-update-rem.xml │ │ │ ├── test-domain-check.xml │ │ │ ├── test-domain-trans-request.xml │ │ │ └── test-host-update.xml │ │ ├── EPPCH │ │ ├── class.RegistryModule.php │ │ ├── class.Transport.php │ │ ├── module.xml │ │ ├── tests.php │ │ └── xml │ │ │ ├── contact-check.xml │ │ │ ├── contact-create.xml │ │ │ ├── contact-delete.xml │ │ │ ├── contact-info.xml │ │ │ ├── contact-update.xml │ │ │ ├── domain-check.xml │ │ │ ├── domain-create.xml │ │ │ ├── domain-delete.xml │ │ │ ├── domain-info.xml │ │ │ ├── domain-trans-approve.xml │ │ │ ├── domain-trans-query.xml │ │ │ ├── domain-trans-reject.xml │ │ │ ├── domain-trans-request.xml │ │ │ ├── domain-update-contact.xml │ │ │ ├── domain-update-ns.xml │ │ │ ├── domain-update.xml │ │ │ ├── hello.xml │ │ │ ├── host-check.xml │ │ │ ├── host-create.xml │ │ │ ├── host-delete.xml │ │ │ ├── host-info.xml │ │ │ ├── host-update.xml │ │ │ ├── login-ex.xml │ │ │ ├── login.xml │ │ │ ├── logout.xml │ │ │ ├── poll-ack.xml │ │ │ └── poll-request.xml │ │ ├── EPPGR │ │ ├── class.RegistryModule.php │ │ ├── class.Transport.php │ │ ├── module.xml │ │ ├── ssl │ │ │ └── cert.pem │ │ ├── tests.php │ │ └── xml │ │ │ ├── contact-check.xml │ │ │ ├── contact-create.xml │ │ │ ├── contact-delete.xml │ │ │ ├── contact-info.xml │ │ │ ├── contact-update.xml │ │ │ ├── domain-addhosts.xml │ │ │ ├── domain-check.xml │ │ │ ├── domain-create.xml │ │ │ ├── domain-delete.xml │ │ │ ├── domain-info.xml │ │ │ ├── domain-renew.xml │ │ │ ├── domain-trade-request.xml │ │ │ ├── domain-trans-approve.xml │ │ │ ├── domain-trans-query.xml │ │ │ ├── domain-trans-reject.xml │ │ │ ├── domain-trans-request.xml │ │ │ ├── domain-uncreate.xml │ │ │ ├── domain-update-contact.xml │ │ │ ├── domain-update-ns.xml │ │ │ ├── domain-update.xml │ │ │ ├── hello.xml │ │ │ ├── host-check.xml │ │ │ ├── host-create.xml │ │ │ ├── host-delete.xml │ │ │ ├── host-info.xml │ │ │ ├── host-update.xml │ │ │ ├── login.xml │ │ │ └── logout.xml │ │ ├── EPPLU │ │ ├── class.RegistryModule.php │ │ ├── class.Transport.php │ │ ├── module.xml │ │ ├── tests.php │ │ └── xml │ │ │ ├── contact-check.xml │ │ │ ├── contact-create-holder.xml │ │ │ ├── contact-create.xml │ │ │ ├── contact-delete.xml │ │ │ ├── contact-info.xml │ │ │ ├── contact-update-holder.xml │ │ │ ├── contact-update.xml │ │ │ ├── domain-check.xml │ │ │ ├── domain-create.xml │ │ │ ├── domain-delete.xml │ │ │ ├── domain-info.xml │ │ │ ├── domain-restore.xml │ │ │ ├── domain-trade-request.xml │ │ │ ├── domain-trans-query.xml │ │ │ ├── domain-trans-request.xml │ │ │ ├── domain-trans-restore-request.xml │ │ │ ├── domain-undelete.xml │ │ │ ├── domain-update-contact.xml │ │ │ ├── domain-update-flags.xml │ │ │ ├── domain-update-ns.xml │ │ │ ├── hello.xml │ │ │ ├── host-check.xml │ │ │ ├── host-create.xml │ │ │ ├── host-delete.xml │ │ │ ├── host-info.xml │ │ │ ├── host-update.xml │ │ │ ├── login.xml │ │ │ ├── logout.xml │ │ │ ├── poll-ack.xml │ │ │ └── poll-request.xml │ │ ├── EPPNL │ │ ├── class.RegistryModule.php │ │ ├── class.Transport.php │ │ ├── module.xml │ │ ├── tests.php │ │ └── xml │ │ │ ├── contact-check.xml │ │ │ ├── contact-create.xml │ │ │ ├── contact-delete.xml │ │ │ ├── contact-info.xml │ │ │ ├── contact-update-disclose.xml │ │ │ ├── contact-update.xml │ │ │ ├── domain-check.xml │ │ │ ├── domain-create.xml │ │ │ ├── domain-delete.xml │ │ │ ├── domain-info.xml │ │ │ ├── domain-renew.xml │ │ │ ├── domain-trans-approve.xml │ │ │ ├── domain-trans-query.xml │ │ │ ├── domain-trans-reject.xml │ │ │ ├── domain-trans-request.xml │ │ │ ├── domain-update-contact.xml │ │ │ ├── domain-update-flags.xml │ │ │ ├── domain-update-ns.xml │ │ │ ├── domain-update.xml │ │ │ ├── hello.xml │ │ │ ├── host-check.xml │ │ │ ├── host-create.xml │ │ │ ├── host-delete.xml │ │ │ ├── host-info.xml │ │ │ ├── host-update.xml │ │ │ ├── login.xml │ │ │ ├── logout.xml │ │ │ ├── poll-ack.xml │ │ │ └── poll-request.xml │ │ ├── EPPZA │ │ ├── class.RegistryModule.php │ │ ├── class.Transport.php │ │ ├── module.xml │ │ ├── ssl │ │ │ └── cert.pem │ │ ├── tests.php │ │ └── xml │ │ │ ├── contact-check.xml │ │ │ ├── contact-create.xml │ │ │ ├── contact-delete.xml │ │ │ ├── contact-info.xml │ │ │ ├── contact-update.xml │ │ │ ├── domain-addhosts.xml │ │ │ ├── domain-check.xml │ │ │ ├── domain-create-SUBORDINATE.xml │ │ │ ├── domain-create.xml │ │ │ ├── domain-delete.xml │ │ │ ├── domain-info.xml │ │ │ ├── domain-lock.xml │ │ │ ├── domain-renew.xml │ │ │ ├── domain-trade-request.xml │ │ │ ├── domain-trans-approve.xml │ │ │ ├── domain-trans-query.xml │ │ │ ├── domain-trans-reject.xml │ │ │ ├── domain-trans-request.xml │ │ │ ├── domain-uncreate.xml │ │ │ ├── domain-unlock.xml │ │ │ ├── domain-update-contact.xml │ │ │ ├── domain-update-flags.xml │ │ │ ├── domain-update-ns.xml │ │ │ ├── domain-update.xml │ │ │ ├── hello.xml │ │ │ ├── host-check.xml │ │ │ ├── host-create.xml │ │ │ ├── host-delete.xml │ │ │ ├── host-info.xml │ │ │ ├── host-update.xml │ │ │ ├── login.xml │ │ │ ├── logout.xml │ │ │ ├── poll-ack.xml │ │ │ └── poll-request.xml │ │ ├── Enom │ │ ├── class.RegistryModule.php │ │ ├── class.Transport.php │ │ ├── module.xml │ │ └── tests.php │ │ ├── Manifest.xsl │ │ ├── ManifestValidator.xsl │ │ ├── OnlineNIC │ │ ├── class.RegistryModule.php │ │ ├── class.Transport.php │ │ ├── countrylist.csv │ │ ├── module.xml │ │ ├── tests.php │ │ └── xml │ │ │ ├── contact-create.xml │ │ │ ├── contact-update.xml │ │ │ ├── domain-check.xml │ │ │ ├── domain-create.xml │ │ │ ├── domain-delete.xml │ │ │ ├── domain-info.xml │ │ │ ├── domain-lock.xml │ │ │ ├── domain-renew.xml │ │ │ ├── domain-trans-request.xml │ │ │ ├── domain-update-ns.xml │ │ │ ├── host-create.xml │ │ │ ├── host-delete.xml │ │ │ ├── host-update.xml │ │ │ ├── login.xml │ │ │ └── logout.xml │ │ ├── RRPProxy │ │ ├── class.RegistryModule.php │ │ ├── class.Transport.php │ │ ├── module.xml │ │ └── tests.php │ │ ├── SRSPlus │ │ ├── class.RegistryModule.php │ │ ├── class.Transport.php │ │ ├── countrylist.csv │ │ ├── module.xml │ │ └── tests.php │ │ ├── Verisign │ │ ├── class.RegistryModule.php │ │ ├── class.Transport.php │ │ ├── module.xml │ │ ├── tests.php │ │ └── xml │ │ │ ├── domain-check.xml │ │ │ ├── domain-create.xml │ │ │ ├── domain-delete.xml │ │ │ ├── domain-info.xml │ │ │ ├── domain-renew.xml │ │ │ ├── domain-trans-approve.xml │ │ │ ├── domain-trans-query.xml │ │ │ ├── domain-trans-reject.xml │ │ │ ├── domain-trans-request.xml │ │ │ ├── domain-update-consolidate.xml │ │ │ ├── domain-update-contact.xml │ │ │ ├── domain-update-ns.xml │ │ │ ├── domain-update.xml │ │ │ ├── hello.xml │ │ │ ├── host-check.xml │ │ │ ├── host-create.xml │ │ │ ├── host-delete.xml │ │ │ ├── host-info.xml │ │ │ ├── host-update.xml │ │ │ ├── login.xml │ │ │ ├── logout.xml │ │ │ ├── poll-ack.xml │ │ │ └── poll-request.xml │ │ ├── class.AbstractRegistryModule.php │ │ ├── class.Changelist.php │ │ ├── class.Contact.php │ │ ├── class.DBContact.php │ │ ├── class.DBDomain.php │ │ ├── class.DBNameserverHost.php │ │ ├── class.Domain.php │ │ ├── class.GenericEPPRegistryModule.php │ │ ├── class.GenericEPPTransport.php │ │ ├── class.JWhois.php │ │ ├── class.Nameserver.php │ │ ├── class.OperationHistory.php │ │ ├── class.OteTestRunner.php │ │ ├── class.OteTestSuite.php │ │ ├── class.PendingOperation.php │ │ ├── class.PendingOperationResponse.php │ │ ├── class.Registry.php │ │ ├── class.RegistryAccessible.php │ │ ├── class.RegistryManifest.php │ │ ├── class.RegistryModuleFactory.php │ │ ├── class.RegistryResponse.php │ │ ├── class.SSLTransport.php │ │ ├── interface.IRegistryModule.php │ │ ├── interface.IRegistryTransport.php │ │ ├── manifest.xsd │ │ ├── observers │ │ ├── class.EmailToRegistrantObserver.php │ │ ├── class.ManagedDNSRegistryObserver.php │ │ └── interface.IRegistryObserver.php │ │ └── tests.php ├── preinstall.sh ├── src │ ├── Api │ │ ├── Client │ │ │ └── class.Service.php │ │ ├── class.KeyTool.php │ │ ├── class.RestServer.php │ │ ├── class.Service.php │ │ ├── class.Service20090622.php │ │ ├── class.Service20100408.php │ │ ├── class.Service20100524.php │ │ ├── class.Service20110217.php │ │ ├── class.Service20111014.php │ │ ├── eppdrs-api.xsd │ │ └── tests.php │ ├── Lib │ │ ├── Data │ │ │ ├── DB │ │ │ │ ├── ADODB │ │ │ │ │ ├── adodb-active-record.inc.php │ │ │ │ │ ├── adodb-csvlib.inc.php │ │ │ │ │ ├── adodb-datadict.inc.php │ │ │ │ │ ├── adodb-error.inc.php │ │ │ │ │ ├── adodb-errorhandler.inc.php │ │ │ │ │ ├── adodb-errorpear.inc.php │ │ │ │ │ ├── adodb-exceptions.inc.php │ │ │ │ │ ├── adodb-iterator.inc.php │ │ │ │ │ ├── adodb-lib.inc.php │ │ │ │ │ ├── adodb-memcache.lib.inc.php │ │ │ │ │ ├── adodb-pager.inc.php │ │ │ │ │ ├── adodb-pear.inc.php │ │ │ │ │ ├── adodb-perf.inc.php │ │ │ │ │ ├── adodb-php4.inc.php │ │ │ │ │ ├── adodb-time.inc.php │ │ │ │ │ ├── adodb-xmlschema.inc.php │ │ │ │ │ ├── adodb-xmlschema03.inc.php │ │ │ │ │ ├── adodb.inc.php │ │ │ │ │ ├── contrib │ │ │ │ │ │ └── toxmlrpc.inc.php │ │ │ │ │ ├── cute_icons_for_site │ │ │ │ │ │ ├── adodb.gif │ │ │ │ │ │ └── adodb2.gif │ │ │ │ │ ├── datadict │ │ │ │ │ │ ├── datadict-access.inc.php │ │ │ │ │ │ ├── datadict-db2.inc.php │ │ │ │ │ │ ├── datadict-firebird.inc.php │ │ │ │ │ │ ├── datadict-generic.inc.php │ │ │ │ │ │ ├── datadict-ibase.inc.php │ │ │ │ │ │ ├── datadict-informix.inc.php │ │ │ │ │ │ ├── datadict-mssql.inc.php │ │ │ │ │ │ ├── datadict-mysql.inc.php │ │ │ │ │ │ ├── datadict-oci8.inc.php │ │ │ │ │ │ ├── datadict-postgres.inc.php │ │ │ │ │ │ ├── datadict-sapdb.inc.php │ │ │ │ │ │ └── datadict-sybase.inc.php │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── docs-active-record.htm │ │ │ │ │ │ ├── docs-adodb.htm │ │ │ │ │ │ ├── docs-datadict.htm │ │ │ │ │ │ ├── docs-oracle.htm │ │ │ │ │ │ ├── docs-perf.htm │ │ │ │ │ │ ├── docs-session.htm │ │ │ │ │ │ ├── docs-session.old.htm │ │ │ │ │ │ ├── old-changelog.htm │ │ │ │ │ │ ├── readme.htm │ │ │ │ │ │ ├── tips_portable_sql.htm │ │ │ │ │ │ └── tute.htm │ │ │ │ │ ├── drivers │ │ │ │ │ │ ├── adodb-access.inc.php │ │ │ │ │ │ ├── adodb-ado.inc.php │ │ │ │ │ │ ├── adodb-ado5.inc.php │ │ │ │ │ │ ├── adodb-ado_access.inc.php │ │ │ │ │ │ ├── adodb-ado_mssql.inc.php │ │ │ │ │ │ ├── adodb-borland_ibase.inc.php │ │ │ │ │ │ ├── adodb-csv.inc.php │ │ │ │ │ │ ├── adodb-db2.inc.php │ │ │ │ │ │ ├── adodb-fbsql.inc.php │ │ │ │ │ │ ├── adodb-firebird.inc.php │ │ │ │ │ │ ├── adodb-ibase.inc.php │ │ │ │ │ │ ├── adodb-informix.inc.php │ │ │ │ │ │ ├── adodb-informix72.inc.php │ │ │ │ │ │ ├── adodb-ldap.inc.php │ │ │ │ │ │ ├── adodb-mssql.inc.php │ │ │ │ │ │ ├── adodb-mssqlpo.inc.php │ │ │ │ │ │ ├── adodb-mysql.inc.php │ │ │ │ │ │ ├── adodb-mysqli.inc.php │ │ │ │ │ │ ├── adodb-mysqlt.inc.php │ │ │ │ │ │ ├── adodb-netezza.inc.php │ │ │ │ │ │ ├── adodb-oci8.inc.php │ │ │ │ │ │ ├── adodb-oci805.inc.php │ │ │ │ │ │ ├── adodb-oci8po.inc.php │ │ │ │ │ │ ├── adodb-odbc.inc.php │ │ │ │ │ │ ├── adodb-odbc_db2.inc.php │ │ │ │ │ │ ├── adodb-odbc_mssql.inc.php │ │ │ │ │ │ ├── adodb-odbc_oracle.inc.php │ │ │ │ │ │ ├── adodb-odbtp.inc.php │ │ │ │ │ │ ├── adodb-odbtp_unicode.inc.php │ │ │ │ │ │ ├── adodb-oracle.inc.php │ │ │ │ │ │ ├── adodb-pdo.inc.php │ │ │ │ │ │ ├── adodb-pdo_mssql.inc.php │ │ │ │ │ │ ├── adodb-pdo_mysql.inc.php │ │ │ │ │ │ ├── adodb-pdo_oci.inc.php │ │ │ │ │ │ ├── adodb-pdo_pgsql.inc.php │ │ │ │ │ │ ├── adodb-postgres.inc.php │ │ │ │ │ │ ├── adodb-postgres64.inc.php │ │ │ │ │ │ ├── adodb-postgres7.inc.php │ │ │ │ │ │ ├── adodb-postgres8.inc.php │ │ │ │ │ │ ├── adodb-proxy.inc.php │ │ │ │ │ │ ├── adodb-sapdb.inc.php │ │ │ │ │ │ ├── adodb-sqlanywhere.inc.php │ │ │ │ │ │ ├── adodb-sqlite.inc.php │ │ │ │ │ │ ├── adodb-sqlitepo.inc.php │ │ │ │ │ │ ├── adodb-sybase.inc.php │ │ │ │ │ │ ├── adodb-sybase_ase.inc.php │ │ │ │ │ │ └── adodb-vfp.inc.php │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── adodb-ar.inc.php │ │ │ │ │ │ ├── adodb-bg.inc.php │ │ │ │ │ │ ├── adodb-bgutf8.inc.php │ │ │ │ │ │ ├── adodb-ca.inc.php │ │ │ │ │ │ ├── adodb-cn.inc.php │ │ │ │ │ │ ├── adodb-cz.inc.php │ │ │ │ │ │ ├── adodb-da.inc.php │ │ │ │ │ │ ├── adodb-de.inc.php │ │ │ │ │ │ ├── adodb-en.inc.php │ │ │ │ │ │ ├── adodb-es.inc.php │ │ │ │ │ │ ├── adodb-esperanto.inc.php │ │ │ │ │ │ ├── adodb-fr.inc.php │ │ │ │ │ │ ├── adodb-hu.inc.php │ │ │ │ │ │ ├── adodb-it.inc.php │ │ │ │ │ │ ├── adodb-nl.inc.php │ │ │ │ │ │ ├── adodb-pl.inc.php │ │ │ │ │ │ ├── adodb-pt-br.inc.php │ │ │ │ │ │ ├── adodb-ro.inc.php │ │ │ │ │ │ ├── adodb-ru1251.inc.php │ │ │ │ │ │ ├── adodb-sv.inc.php │ │ │ │ │ │ └── adodb-uk1251.inc.php │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── pear │ │ │ │ │ │ ├── Auth │ │ │ │ │ │ │ └── Container │ │ │ │ │ │ │ │ └── ADOdb.php │ │ │ │ │ │ └── readme.Auth.txt │ │ │ │ │ ├── perf │ │ │ │ │ │ ├── perf-db2.inc.php │ │ │ │ │ │ ├── perf-informix.inc.php │ │ │ │ │ │ ├── perf-mssql.inc.php │ │ │ │ │ │ ├── perf-mysql.inc.php │ │ │ │ │ │ ├── perf-oci8.inc.php │ │ │ │ │ │ └── perf-postgres.inc.php │ │ │ │ │ ├── pivottable.inc.php │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── rsfilter.inc.php │ │ │ │ │ ├── server.php │ │ │ │ │ ├── session │ │ │ │ │ │ ├── adodb-compress-bzip2.php │ │ │ │ │ │ ├── adodb-compress-gzip.php │ │ │ │ │ │ ├── adodb-cryptsession.php │ │ │ │ │ │ ├── adodb-cryptsession2.php │ │ │ │ │ │ ├── adodb-encrypt-mcrypt.php │ │ │ │ │ │ ├── adodb-encrypt-md5.php │ │ │ │ │ │ ├── adodb-encrypt-secret.php │ │ │ │ │ │ ├── adodb-encrypt-sha1.php │ │ │ │ │ │ ├── adodb-sess.txt │ │ │ │ │ │ ├── adodb-session-clob.php │ │ │ │ │ │ ├── adodb-session-clob2.php │ │ │ │ │ │ ├── adodb-session.php │ │ │ │ │ │ ├── adodb-session2.php │ │ │ │ │ │ ├── adodb-sessions.mysql.sql │ │ │ │ │ │ ├── adodb-sessions.oracle.clob.sql │ │ │ │ │ │ ├── adodb-sessions.oracle.sql │ │ │ │ │ │ ├── crypt.inc.php │ │ │ │ │ │ ├── old │ │ │ │ │ │ │ ├── adodb-cryptsession.php │ │ │ │ │ │ │ ├── adodb-session-clob.php │ │ │ │ │ │ │ ├── adodb-session.php │ │ │ │ │ │ │ └── crypt.inc.php │ │ │ │ │ │ ├── session_schema.xml │ │ │ │ │ │ └── session_schema2.xml │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── benchmark.php │ │ │ │ │ │ ├── client.php │ │ │ │ │ │ ├── pdo.php │ │ │ │ │ │ ├── rr.htm │ │ │ │ │ │ ├── test-active-record.php │ │ │ │ │ │ ├── test-active-recs2.php │ │ │ │ │ │ ├── test-datadict.php │ │ │ │ │ │ ├── test-perf.php │ │ │ │ │ │ ├── test-pgblob.php │ │ │ │ │ │ ├── test-php5.php │ │ │ │ │ │ ├── test-xmlschema.php │ │ │ │ │ │ ├── test.php │ │ │ │ │ │ ├── test2.php │ │ │ │ │ │ ├── test3.php │ │ │ │ │ │ ├── test4.php │ │ │ │ │ │ ├── test5.php │ │ │ │ │ │ ├── test_rs_array.php │ │ │ │ │ │ ├── testcache.php │ │ │ │ │ │ ├── testdatabases.inc.php │ │ │ │ │ │ ├── testgenid.php │ │ │ │ │ │ ├── testmssql.php │ │ │ │ │ │ ├── testoci8.php │ │ │ │ │ │ ├── testoci8cursor.php │ │ │ │ │ │ ├── testpaging.php │ │ │ │ │ │ ├── testpear.php │ │ │ │ │ │ ├── testsessions.php │ │ │ │ │ │ ├── time.php │ │ │ │ │ │ ├── tmssql.php │ │ │ │ │ │ ├── xmlschema-mssql.xml │ │ │ │ │ │ └── xmlschema.xml │ │ │ │ │ ├── toexport.inc.php │ │ │ │ │ ├── tohtml.inc.php │ │ │ │ │ ├── xmlschema.dtd │ │ │ │ │ ├── xmlschema03.dtd │ │ │ │ │ └── xsl │ │ │ │ │ │ ├── convert-0.1-0.2.xsl │ │ │ │ │ │ ├── convert-0.1-0.3.xsl │ │ │ │ │ │ ├── convert-0.2-0.1.xsl │ │ │ │ │ │ ├── convert-0.2-0.3.xsl │ │ │ │ │ │ ├── remove-0.2.xsl │ │ │ │ │ │ └── remove-0.3.xsl │ │ │ │ └── adodb_lite │ │ │ │ │ ├── adodb-datadict.inc.php │ │ │ │ │ ├── adodb-error.inc.php │ │ │ │ │ ├── adodb-errorhandler.inc.php │ │ │ │ │ ├── adodb-errorpear.inc.php │ │ │ │ │ ├── adodb-exceptions.inc.php │ │ │ │ │ ├── adodb-perf-module.inc.php │ │ │ │ │ ├── adodb-perf.inc.php │ │ │ │ │ ├── adodb-time.inc.php │ │ │ │ │ ├── adodb-xmlschema.inc.php │ │ │ │ │ ├── adodb.config.php │ │ │ │ │ ├── adodb.inc.php │ │ │ │ │ ├── adodbSQL_drivers │ │ │ │ │ ├── fbsql │ │ │ │ │ │ ├── fbsql_datadict.inc │ │ │ │ │ │ ├── fbsql_date_module.inc │ │ │ │ │ │ ├── fbsql_driver.inc │ │ │ │ │ │ ├── fbsql_extend_module.inc │ │ │ │ │ │ ├── fbsql_meta_module.inc │ │ │ │ │ │ └── fbsql_transaction_module.inc │ │ │ │ │ ├── gladius │ │ │ │ │ │ ├── gladius_datadict.inc │ │ │ │ │ │ ├── gladius_date_module.inc │ │ │ │ │ │ ├── gladius_driver.inc │ │ │ │ │ │ ├── gladius_extend_module.inc │ │ │ │ │ │ ├── gladius_meta_module.inc │ │ │ │ │ │ └── gladius_transaction_module.inc │ │ │ │ │ ├── maxdb │ │ │ │ │ │ ├── maxdb_datadict.inc │ │ │ │ │ │ ├── maxdb_date_module.inc │ │ │ │ │ │ ├── maxdb_driver.inc │ │ │ │ │ │ ├── maxdb_extend_module.inc │ │ │ │ │ │ ├── maxdb_meta_module.inc │ │ │ │ │ │ └── maxdb_transaction_module.inc │ │ │ │ │ ├── msql │ │ │ │ │ │ ├── msql_datadict.inc │ │ │ │ │ │ ├── msql_date_module.inc │ │ │ │ │ │ ├── msql_driver.inc │ │ │ │ │ │ ├── msql_extend_module.inc │ │ │ │ │ │ ├── msql_meta_module.inc │ │ │ │ │ │ └── msql_transaction_module.inc │ │ │ │ │ ├── mssql │ │ │ │ │ │ ├── mssql_datadict.inc │ │ │ │ │ │ ├── mssql_date_module.inc │ │ │ │ │ │ ├── mssql_driver.inc │ │ │ │ │ │ ├── mssql_extend_module.inc │ │ │ │ │ │ ├── mssql_meta_module.inc │ │ │ │ │ │ └── mssql_transaction_module.inc │ │ │ │ │ ├── mssqlpo │ │ │ │ │ │ ├── mssqlpo_datadict.inc │ │ │ │ │ │ ├── mssqlpo_date_module.inc │ │ │ │ │ │ ├── mssqlpo_driver.inc │ │ │ │ │ │ ├── mssqlpo_extend_module.inc │ │ │ │ │ │ ├── mssqlpo_meta_module.inc │ │ │ │ │ │ └── mssqlpo_transaction_module.inc │ │ │ │ │ ├── mysql │ │ │ │ │ │ ├── mysql_datadict.inc │ │ │ │ │ │ ├── mysql_date_module.inc │ │ │ │ │ │ ├── mysql_driver.inc │ │ │ │ │ │ ├── mysql_extend_module.inc │ │ │ │ │ │ ├── mysql_meta_module.inc │ │ │ │ │ │ ├── mysql_perfmon_module.inc │ │ │ │ │ │ └── mysql_transaction_module.inc │ │ │ │ │ ├── mysqli │ │ │ │ │ │ ├── mysqli_datadict.inc │ │ │ │ │ │ ├── mysqli_date_module.inc │ │ │ │ │ │ ├── mysqli_driver.inc │ │ │ │ │ │ ├── mysqli_extend_module.inc │ │ │ │ │ │ ├── mysqli_meta_module.inc │ │ │ │ │ │ ├── mysqli_perfmon_module.inc │ │ │ │ │ │ └── mysqli_transaction_module.inc │ │ │ │ │ ├── mysqlt │ │ │ │ │ │ ├── mysqlt_datadict.inc │ │ │ │ │ │ ├── mysqlt_date_module.inc │ │ │ │ │ │ ├── mysqlt_driver.inc │ │ │ │ │ │ ├── mysqlt_extend_module.inc │ │ │ │ │ │ ├── mysqlt_meta_module.inc │ │ │ │ │ │ ├── mysqlt_perfmon_module.inc │ │ │ │ │ │ └── mysqlt_transaction_module.inc │ │ │ │ │ ├── odbc │ │ │ │ │ │ ├── odbc_datadict.inc │ │ │ │ │ │ ├── odbc_date_module.inc │ │ │ │ │ │ ├── odbc_driver.inc │ │ │ │ │ │ ├── odbc_extend_module.inc │ │ │ │ │ │ ├── odbc_meta_module.inc │ │ │ │ │ │ └── odbc_transaction_module.inc │ │ │ │ │ ├── postgres │ │ │ │ │ │ ├── postgres_datadict.inc │ │ │ │ │ │ ├── postgres_date_module.inc │ │ │ │ │ │ ├── postgres_driver.inc │ │ │ │ │ │ ├── postgres_extend_module.inc │ │ │ │ │ │ ├── postgres_meta_module.inc │ │ │ │ │ │ └── postgres_transaction_module.inc │ │ │ │ │ ├── postgres64 │ │ │ │ │ │ ├── postgres64_datadict.inc │ │ │ │ │ │ ├── postgres64_date_module.inc │ │ │ │ │ │ ├── postgres64_driver.inc │ │ │ │ │ │ ├── postgres64_extend_module.inc │ │ │ │ │ │ ├── postgres64_meta_module.inc │ │ │ │ │ │ └── postgres64_transaction_module.inc │ │ │ │ │ ├── postgres7 │ │ │ │ │ │ ├── postgres7_datadict.inc │ │ │ │ │ │ ├── postgres7_date_module.inc │ │ │ │ │ │ ├── postgres7_driver.inc │ │ │ │ │ │ ├── postgres7_extend_module.inc │ │ │ │ │ │ ├── postgres7_meta_module.inc │ │ │ │ │ │ └── postgres7_transaction_module.inc │ │ │ │ │ ├── postgres8 │ │ │ │ │ │ ├── postgres8_datadict.inc │ │ │ │ │ │ ├── postgres8_date_module.inc │ │ │ │ │ │ ├── postgres8_driver.inc │ │ │ │ │ │ ├── postgres8_extend_module.inc │ │ │ │ │ │ ├── postgres8_meta_module.inc │ │ │ │ │ │ └── postgres8_transaction_module.inc │ │ │ │ │ ├── sqlite │ │ │ │ │ │ ├── sqlite_datadict.inc │ │ │ │ │ │ ├── sqlite_date_module.inc │ │ │ │ │ │ ├── sqlite_driver.inc │ │ │ │ │ │ ├── sqlite_extend_module.inc │ │ │ │ │ │ ├── sqlite_meta_module.inc │ │ │ │ │ │ └── sqlite_transaction_module.inc │ │ │ │ │ ├── sqlitepo │ │ │ │ │ │ ├── sqlitepo_datadict.inc │ │ │ │ │ │ ├── sqlitepo_date_module.inc │ │ │ │ │ │ ├── sqlitepo_driver.inc │ │ │ │ │ │ ├── sqlitepo_extend_module.inc │ │ │ │ │ │ ├── sqlitepo_meta_module.inc │ │ │ │ │ │ └── sqlitepo_transaction_module.inc │ │ │ │ │ ├── sybase │ │ │ │ │ │ ├── sybase_datadict.inc │ │ │ │ │ │ ├── sybase_date_module.inc │ │ │ │ │ │ ├── sybase_driver.inc │ │ │ │ │ │ ├── sybase_extend_module.inc │ │ │ │ │ │ ├── sybase_meta_module.inc │ │ │ │ │ │ └── sybase_transaction_module.inc │ │ │ │ │ └── sybase_ase │ │ │ │ │ │ ├── sybase_ase_datadict.inc │ │ │ │ │ │ ├── sybase_ase_date_module.inc │ │ │ │ │ │ ├── sybase_ase_driver.inc │ │ │ │ │ │ ├── sybase_ase_extend_module.inc │ │ │ │ │ │ ├── sybase_ase_meta_module.inc │ │ │ │ │ │ └── sybase_ase_transaction_module.inc │ │ │ │ │ ├── documentation │ │ │ │ │ ├── adodb_license.txt │ │ │ │ │ ├── adodb_lite_commands.html │ │ │ │ │ ├── adodb_lite_datadictionary.html │ │ │ │ │ ├── adodb_lite_debugconsole.html │ │ │ │ │ ├── adodb_lite_errorhandling.html │ │ │ │ │ ├── adodb_lite_howtoinstall.html │ │ │ │ │ ├── adodb_lite_modulecreation.html │ │ │ │ │ ├── adodb_lite_modules.html │ │ │ │ │ ├── adodb_lite_performancemonitor.html │ │ │ │ │ ├── adodb_lite_sessions.html │ │ │ │ │ ├── changelog.txt │ │ │ │ │ ├── example_generic_module.inc │ │ │ │ │ ├── example_module.inc │ │ │ │ │ ├── images │ │ │ │ │ │ ├── dot_b.gif │ │ │ │ │ │ ├── e05.gif │ │ │ │ │ │ ├── fon_bar01.gif │ │ │ │ │ │ └── query_de.gif │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── readme.txt │ │ │ │ │ └── style.css │ │ │ │ │ ├── generic_modules │ │ │ │ │ ├── adodblite_module.inc │ │ │ │ │ ├── menu_module.inc │ │ │ │ │ ├── object_module.inc │ │ │ │ │ └── pear_module.inc │ │ │ │ │ ├── lang │ │ │ │ │ ├── adodb-ar.inc.php │ │ │ │ │ ├── adodb-bg.inc.php │ │ │ │ │ ├── adodb-bgutf8.inc.php │ │ │ │ │ ├── adodb-ca.inc.php │ │ │ │ │ ├── adodb-cn.inc.php │ │ │ │ │ ├── adodb-cz.inc.php │ │ │ │ │ ├── adodb-da.inc.php │ │ │ │ │ ├── adodb-de.inc.php │ │ │ │ │ ├── adodb-en.inc.php │ │ │ │ │ ├── adodb-es.inc.php │ │ │ │ │ ├── adodb-esperanto.inc.php │ │ │ │ │ ├── adodb-fr.inc.php │ │ │ │ │ ├── adodb-hu.inc.php │ │ │ │ │ ├── adodb-it.inc.php │ │ │ │ │ ├── adodb-nl.inc.php │ │ │ │ │ ├── adodb-pl.inc.php │ │ │ │ │ ├── adodb-pt-br.inc.php │ │ │ │ │ ├── adodb-ro.inc.php │ │ │ │ │ ├── adodb-ru1251.inc.php │ │ │ │ │ ├── adodb-sv.inc.php │ │ │ │ │ └── adodb-uk1251.inc.php │ │ │ │ │ ├── query_debug_console │ │ │ │ │ ├── query_debug_console.php │ │ │ │ │ └── query_debug_console.tpl │ │ │ │ │ ├── session │ │ │ │ │ ├── adodb-compress-bzip2.php │ │ │ │ │ ├── adodb-compress-gzip.php │ │ │ │ │ ├── adodb-cryptsession.php │ │ │ │ │ ├── adodb-encrypt-mcrypt.php │ │ │ │ │ ├── adodb-encrypt-md5.php │ │ │ │ │ ├── adodb-encrypt-ordcrypt.php │ │ │ │ │ ├── adodb-encrypt-secret.php │ │ │ │ │ ├── adodb-encrypt-sha1.php │ │ │ │ │ ├── adodb-session.php │ │ │ │ │ ├── adodb-sessions.mysql.sql │ │ │ │ │ └── session_schema.xml │ │ │ │ │ ├── tests │ │ │ │ │ ├── adodblite_thumb.jpg │ │ │ │ │ ├── pj │ │ │ │ │ ├── test_adodb_lite.php │ │ │ │ │ ├── test_adodb_lite_sessions.php │ │ │ │ │ ├── test_datadictionary.php │ │ │ │ │ └── xmlschema.xml │ │ │ │ │ ├── tohtml.inc.php │ │ │ │ │ └── xmlschema.dtd │ │ │ └── XML │ │ │ │ └── RSS │ │ │ │ ├── class.RSS.php │ │ │ │ └── class.XMLWriter.php │ │ ├── Graphics │ │ │ ├── Captcha │ │ │ │ ├── class.Captcha.php │ │ │ │ └── fonts │ │ │ │ │ └── Gibberish.ttf │ │ │ └── JPGraph │ │ │ │ ├── flags.dat │ │ │ │ ├── flags_thumb100x100.dat │ │ │ │ ├── flags_thumb35x35.dat │ │ │ │ ├── flags_thumb60x60.dat │ │ │ │ ├── imgdata_balls.inc.php │ │ │ │ ├── imgdata_bevels.inc.php │ │ │ │ ├── imgdata_diamonds.inc.php │ │ │ │ ├── imgdata_pushpins.inc.php │ │ │ │ ├── imgdata_squares.inc.php │ │ │ │ ├── imgdata_stars.inc.php │ │ │ │ ├── jpg-config.inc.php │ │ │ │ ├── jpgraph.php │ │ │ │ ├── jpgraph_antispam-digits.php │ │ │ │ ├── jpgraph_antispam.php │ │ │ │ ├── jpgraph_bar.php │ │ │ │ ├── jpgraph_canvas.php │ │ │ │ ├── jpgraph_canvtools.php │ │ │ │ ├── jpgraph_date.php │ │ │ │ ├── jpgraph_errhandler.inc.php │ │ │ │ ├── jpgraph_error.php │ │ │ │ ├── jpgraph_flags.php │ │ │ │ ├── jpgraph_gantt.php │ │ │ │ ├── jpgraph_gb2312.php │ │ │ │ ├── jpgraph_gradient.php │ │ │ │ ├── jpgraph_iconplot.php │ │ │ │ ├── jpgraph_imgtrans.php │ │ │ │ ├── jpgraph_led.php │ │ │ │ ├── jpgraph_line.php │ │ │ │ ├── jpgraph_log.php │ │ │ │ ├── jpgraph_mgraph.php │ │ │ │ ├── jpgraph_pie.php │ │ │ │ ├── jpgraph_pie3d.php │ │ │ │ ├── jpgraph_plotband.php │ │ │ │ ├── jpgraph_plotmark.inc.php │ │ │ │ ├── jpgraph_polar.php │ │ │ │ ├── jpgraph_radar.php │ │ │ │ ├── jpgraph_regstat.php │ │ │ │ ├── jpgraph_scatter.php │ │ │ │ ├── jpgraph_stock.php │ │ │ │ ├── jpgraph_ttf.inc.php │ │ │ │ ├── jpgraph_utils.inc.php │ │ │ │ └── lang │ │ │ │ ├── de.inc.php │ │ │ │ ├── en.inc.php │ │ │ │ └── prod.inc.php │ │ ├── Media │ │ │ └── Audio │ │ │ │ ├── extension.cache.dbm.php │ │ │ │ ├── extension.cache.mysql.php │ │ │ │ ├── getid3.php │ │ │ │ ├── module.archive.gzip.php │ │ │ │ ├── module.archive.szip.php │ │ │ │ ├── module.archive.tar.php │ │ │ │ ├── module.archive.zip.php │ │ │ │ ├── module.audio-video.asf.php │ │ │ │ ├── module.audio-video.flv.php │ │ │ │ ├── module.audio-video.mpeg.php │ │ │ │ ├── module.audio-video.nsv.php │ │ │ │ ├── module.audio-video.quicktime.php │ │ │ │ ├── module.audio-video.real.php │ │ │ │ ├── module.audio-video.riff.php │ │ │ │ ├── module.audio-video.swf.php │ │ │ │ ├── module.audio.aac_adif.php │ │ │ │ ├── module.audio.aac_adts.php │ │ │ │ ├── module.audio.ac3.php │ │ │ │ ├── module.audio.au.php │ │ │ │ ├── module.audio.avr.php │ │ │ │ ├── module.audio.bonk.php │ │ │ │ ├── module.audio.dts.php │ │ │ │ ├── module.audio.la.php │ │ │ │ ├── module.audio.lpac.php │ │ │ │ ├── module.audio.midi.php │ │ │ │ ├── module.audio.monkey.php │ │ │ │ ├── module.audio.mp3.php │ │ │ │ ├── module.audio.mpc.php │ │ │ │ ├── module.audio.mpc_old.php │ │ │ │ ├── module.audio.optimfrog.php │ │ │ │ ├── module.audio.rkau.php │ │ │ │ ├── module.audio.shorten.php │ │ │ │ ├── module.audio.tta.php │ │ │ │ ├── module.audio.voc.php │ │ │ │ ├── module.audio.vqf.php │ │ │ │ ├── module.audio.wavpack.php │ │ │ │ ├── module.audio.xiph.php │ │ │ │ ├── module.graphic.bmp.php │ │ │ │ ├── module.graphic.gif.php │ │ │ │ ├── module.graphic.jpeg.php │ │ │ │ ├── module.graphic.pcd.php │ │ │ │ ├── module.graphic.png.php │ │ │ │ ├── module.graphic.tiff.php │ │ │ │ ├── module.lib.data_hash.php │ │ │ │ ├── module.lib.iconv_replacement.php │ │ │ │ ├── module.lib.image_size.php │ │ │ │ ├── module.misc.iso.php │ │ │ │ ├── module.tag.apetag.php │ │ │ │ ├── module.tag.id3v1.php │ │ │ │ ├── module.tag.id3v2.php │ │ │ │ ├── module.tag.lyrics3.php │ │ │ │ ├── write.apetag.php │ │ │ │ ├── write.flac.php │ │ │ │ ├── write.id3v1.php │ │ │ │ ├── write.id3v2.php │ │ │ │ ├── write.lyrics3.php │ │ │ │ └── write.vorbis.php │ │ ├── NET │ │ │ └── API │ │ │ │ └── MaxMind │ │ │ │ ├── ChangeLog │ │ │ │ ├── README │ │ │ │ ├── geoip.inc │ │ │ │ ├── geoipcity.inc │ │ │ │ ├── geoipregionvars.php │ │ │ │ ├── sample.php │ │ │ │ ├── sample_city.php │ │ │ │ ├── sample_netspeed.php │ │ │ │ ├── sample_org.php │ │ │ │ └── sample_region.php │ │ └── UI │ │ │ └── Smarty │ │ │ ├── Config_File.class.php │ │ │ ├── Smarty.class.php │ │ │ ├── SmartyExt.class.php │ │ │ ├── Smarty_Compiler.class.php │ │ │ ├── Smarty_CompilerExt.class.php │ │ │ ├── debug.tpl │ │ │ ├── internals │ │ │ ├── core.assemble_plugin_filepath.php │ │ │ ├── core.assign_smarty_interface.php │ │ │ ├── core.create_dir_structure.php │ │ │ ├── core.display_debug_console.php │ │ │ ├── core.get_include_path.php │ │ │ ├── core.get_microtime.php │ │ │ ├── core.get_php_resource.php │ │ │ ├── core.is_secure.php │ │ │ ├── core.is_trusted.php │ │ │ ├── core.load_plugins.php │ │ │ ├── core.load_resource_plugin.php │ │ │ ├── core.process_cached_inserts.php │ │ │ ├── core.process_compiled_include.php │ │ │ ├── core.read_cache_file.php │ │ │ ├── core.rm_auto.php │ │ │ ├── core.rmdir.php │ │ │ ├── core.run_insert_handler.php │ │ │ ├── core.smarty_include_php.php │ │ │ ├── core.write_cache_file.php │ │ │ ├── core.write_compiled_include.php │ │ │ ├── core.write_compiled_resource.php │ │ │ └── core.write_file.php │ │ │ └── plugins │ │ │ ├── block.t.php │ │ │ ├── block.textformat.php │ │ │ ├── compiler.assign.php │ │ │ ├── function.assign_debug_info.php │ │ │ ├── function.config_load.php │ │ │ ├── function.counter.php │ │ │ ├── function.cycle.php │ │ │ ├── function.debug.php │ │ │ ├── function.eval.php │ │ │ ├── function.fetch.php │ │ │ ├── function.html_checkboxes.php │ │ │ ├── function.html_image.php │ │ │ ├── function.html_options.php │ │ │ ├── function.html_radios.php │ │ │ ├── function.html_select_date.php │ │ │ ├── function.html_select_time.php │ │ │ ├── function.html_table.php │ │ │ ├── function.mailto.php │ │ │ ├── function.math.php │ │ │ ├── function.popup.php │ │ │ ├── function.popup_init.php │ │ │ ├── modifier.capitalize.php │ │ │ ├── modifier.cat.php │ │ │ ├── modifier.count_characters.php │ │ │ ├── modifier.count_paragraphs.php │ │ │ ├── modifier.count_sentences.php │ │ │ ├── modifier.count_words.php │ │ │ ├── modifier.date_format.php │ │ │ ├── modifier.debug_print_var.php │ │ │ ├── modifier.default.php │ │ │ ├── modifier.escape.php │ │ │ ├── modifier.indent.php │ │ │ ├── modifier.lower.php │ │ │ ├── modifier.nl2br.php │ │ │ ├── modifier.regex_replace.php │ │ │ ├── modifier.replace.php │ │ │ ├── modifier.spacify.php │ │ │ ├── modifier.string_format.php │ │ │ ├── modifier.strip.php │ │ │ ├── modifier.strip_tags.php │ │ │ ├── modifier.truncate.php │ │ │ ├── modifier.upper.php │ │ │ ├── modifier.wordwrap.php │ │ │ ├── outputfilter.trimwhitespace.php │ │ │ ├── resource.string.php │ │ │ ├── shared.escape_special_chars.php │ │ │ └── shared.make_timestamp.php │ ├── LibWebta │ │ ├── .project │ │ ├── TODO.txt │ │ ├── append.inc.php │ │ ├── class.Skeleton.php │ │ ├── common.inc.php │ │ ├── docs │ │ │ ├── documentation.chm │ │ │ └── phpdoc.conf │ │ ├── library │ │ │ ├── Data │ │ │ │ ├── DB │ │ │ │ │ └── MySQL │ │ │ │ │ │ ├── class.MySQLTool.php │ │ │ │ │ │ └── tests.php │ │ │ │ ├── Formater │ │ │ │ │ ├── class.Formater.php │ │ │ │ │ └── tests.php │ │ │ │ ├── JSON │ │ │ │ │ └── JSON.php │ │ │ │ ├── RRD │ │ │ │ │ ├── class.RRA.php │ │ │ │ │ ├── class.RRD.php │ │ │ │ │ ├── class.RRDDS.php │ │ │ │ │ ├── class.RRDGraph.php │ │ │ │ │ ├── test.rrd │ │ │ │ │ ├── tests.php │ │ │ │ │ └── todo.txt │ │ │ │ ├── Text │ │ │ │ │ ├── class.DiffTool.php │ │ │ │ │ ├── class.HTMLParser.php │ │ │ │ │ ├── class.TextParser.php │ │ │ │ │ ├── test_file_1.txt │ │ │ │ │ ├── test_file_2.txt │ │ │ │ │ └── tests.php │ │ │ │ ├── Validation │ │ │ │ │ ├── class.Validator.php │ │ │ │ │ └── tests.php │ │ │ │ └── XML │ │ │ │ │ ├── OPML │ │ │ │ │ ├── class.OPMLParser.php │ │ │ │ │ └── tests.php │ │ │ │ │ └── RSS │ │ │ │ │ ├── class.RSSReader.php │ │ │ │ │ └── tests.php │ │ │ ├── Graphics │ │ │ │ ├── Captcha │ │ │ │ │ ├── class.Captcha.php │ │ │ │ │ └── tests.php │ │ │ │ ├── GDTool │ │ │ │ │ └── class.GDTool.php │ │ │ │ ├── ImageMagick │ │ │ │ │ ├── TODO.txt │ │ │ │ │ ├── class.ImageMagick.php │ │ │ │ │ ├── class.ImageMagickEx.php │ │ │ │ │ ├── class.ImageMagickLite.php │ │ │ │ │ ├── class.ImageMagickTool.php │ │ │ │ │ ├── class.PhotoFilter.php │ │ │ │ │ ├── tests.php │ │ │ │ │ └── tests │ │ │ │ │ │ ├── spidar.jpg │ │ │ │ │ │ ├── textures │ │ │ │ │ │ └── pencil.gif │ │ │ │ │ │ └── turtle.jpg │ │ │ │ └── VideoUtil │ │ │ │ │ ├── Drivers │ │ │ │ │ ├── class.AbstractDriver.php │ │ │ │ │ ├── class.FFMpegDriver.php │ │ │ │ │ ├── class.MplayerDriver.php │ │ │ │ │ └── interface.VideoUtilDriver.php │ │ │ │ │ ├── class.VideoUtil.php │ │ │ │ │ └── tests.php │ │ │ ├── IO │ │ │ │ ├── Archive │ │ │ │ │ ├── class.ZipArchiveEx.php │ │ │ │ │ └── tests.php │ │ │ │ ├── Basic │ │ │ │ │ ├── class.IOTool.php │ │ │ │ │ ├── magic │ │ │ │ │ └── tests.php │ │ │ │ ├── Cache │ │ │ │ │ ├── Drivers │ │ │ │ │ │ ├── class.FileSystemCacheDriver.php │ │ │ │ │ │ ├── class.MemcacheCacheDriver.php │ │ │ │ │ │ ├── class.MemcachePoolCacheDriver.php │ │ │ │ │ │ ├── class.SessionCacheDriver.php │ │ │ │ │ │ └── interface.CacheDriver.php │ │ │ │ │ ├── class.Cache.php │ │ │ │ │ └── tests.php │ │ │ │ ├── Logging │ │ │ │ │ ├── Adapters │ │ │ │ │ │ ├── class.ConsoleLogAdapter.php │ │ │ │ │ │ ├── class.DBLogAdapter.php │ │ │ │ │ │ ├── class.EMailLogAdapter.php │ │ │ │ │ │ ├── class.FileLogAdapter.php │ │ │ │ │ │ ├── class.HTMLLogAdapter.php │ │ │ │ │ │ ├── class.NullLogAdapter.php │ │ │ │ │ │ └── interface.LogAdapter.php │ │ │ │ │ ├── TODO.txt │ │ │ │ │ ├── class.Log.php │ │ │ │ │ └── tests.php │ │ │ │ ├── PCNTL │ │ │ │ │ ├── class.JobLauncher.php │ │ │ │ │ ├── class.ProcessManager.php │ │ │ │ │ ├── class.SignalHandler.php │ │ │ │ │ ├── class.testProcess.php │ │ │ │ │ ├── interface.IProcess.php │ │ │ │ │ └── tests.php │ │ │ │ ├── Transports │ │ │ │ │ ├── Transports │ │ │ │ │ │ ├── Interface.Transport.php │ │ │ │ │ │ ├── class.LocalTransport.php │ │ │ │ │ │ └── class.SSHTransport.php │ │ │ │ │ ├── class.TransportFactory.php │ │ │ │ │ └── tests.php │ │ │ │ └── Upload │ │ │ │ │ ├── class.UploadManager.php │ │ │ │ │ └── tests.php │ │ │ ├── Locale │ │ │ │ └── class.Locale.php │ │ │ ├── Math │ │ │ │ ├── class.Math.php │ │ │ │ └── tests.php │ │ │ ├── NET │ │ │ │ ├── API │ │ │ │ │ ├── AWS │ │ │ │ │ │ ├── 2007-03-01.ec2.wsdl │ │ │ │ │ │ ├── class.AmazonEC2.php │ │ │ │ │ │ ├── class.AmazonS3.php │ │ │ │ │ │ ├── class.WSSESOAP.php │ │ │ │ │ │ ├── class.WSSESoapClient.php │ │ │ │ │ │ ├── tests.php │ │ │ │ │ │ └── xmlseclibs.inc.php │ │ │ │ │ ├── Apache │ │ │ │ │ │ ├── class.ApacheTool.php │ │ │ │ │ │ ├── class.RemoteApacheTool.php │ │ │ │ │ │ ├── test.ApacheTool.php │ │ │ │ │ │ └── test.RemoteApacheTool.php │ │ │ │ │ ├── BIND │ │ │ │ │ │ ├── TODO.txt │ │ │ │ │ │ ├── class.BIND.php │ │ │ │ │ │ ├── class.RemoteBIND.php │ │ │ │ │ │ └── tests.php │ │ │ │ │ ├── Blogger │ │ │ │ │ │ ├── class.Blogger.php │ │ │ │ │ │ ├── class.BloggerProfile.php │ │ │ │ │ │ └── tests.php │ │ │ │ │ ├── Bookings │ │ │ │ │ │ ├── class.Bookings.php │ │ │ │ │ │ └── tests.php │ │ │ │ │ ├── Facebook │ │ │ │ │ │ ├── class.Facebook.php │ │ │ │ │ │ ├── class.FacebookAPI.php │ │ │ │ │ │ ├── class.FacebookProfile.php │ │ │ │ │ │ └── tests.php │ │ │ │ │ ├── Flickr │ │ │ │ │ │ ├── class.Flickr.php │ │ │ │ │ │ └── tests.php │ │ │ │ │ ├── Google │ │ │ │ │ │ ├── class.GoogleCalendar.php │ │ │ │ │ │ ├── class.GoogleCalendarEvent.php │ │ │ │ │ │ ├── class.GoogleService.php │ │ │ │ │ │ ├── class.Picasa.php │ │ │ │ │ │ └── tests.php │ │ │ │ │ ├── LinkedIn │ │ │ │ │ │ ├── class.LinkedIn.php │ │ │ │ │ │ ├── class.LinkedInProfile.php │ │ │ │ │ │ └── tests.php │ │ │ │ │ ├── LiveJournal │ │ │ │ │ │ ├── class.LiveJournal.php │ │ │ │ │ │ ├── class.LiveJournalProfile.php │ │ │ │ │ │ └── tests.php │ │ │ │ │ ├── MySpace │ │ │ │ │ │ ├── class.MySpace.php │ │ │ │ │ │ ├── class.MySpaceProfile.php │ │ │ │ │ │ └── tests.php │ │ │ │ │ ├── Nginx │ │ │ │ │ │ ├── class.Nginx.php │ │ │ │ │ │ ├── class.NginxVHost.php │ │ │ │ │ │ └── tests.php │ │ │ │ │ ├── PaymentProcessor │ │ │ │ │ │ ├── Drivers │ │ │ │ │ │ │ ├── Interface.PaymentProcessorDriver.php │ │ │ │ │ │ │ ├── class.AbstractPaymentProcessorDriver.php │ │ │ │ │ │ │ ├── class.EZBillDriver.php │ │ │ │ │ │ │ ├── class.PayPalDriver.php │ │ │ │ │ │ │ ├── class.ProxyPay3Driver.php │ │ │ │ │ │ │ └── class.TwoCheckoutDriver.php │ │ │ │ │ │ ├── class.PaymentProcessor.php │ │ │ │ │ │ ├── tests.php │ │ │ │ │ │ └── todo.txt │ │ │ │ │ ├── RWhois │ │ │ │ │ │ ├── class.RWhois.php │ │ │ │ │ │ ├── class.RWhoisManager.php │ │ │ │ │ │ └── tests.php │ │ │ │ │ ├── SRSPlus │ │ │ │ │ │ ├── class.SRSPlus.php │ │ │ │ │ │ └── tests.php │ │ │ │ │ ├── Shoutcast │ │ │ │ │ │ └── class.Shoutcast.php │ │ │ │ │ ├── Ventrilo │ │ │ │ │ │ ├── class.Ventrilo.php │ │ │ │ │ │ ├── class.VentriloVhost.php │ │ │ │ │ │ └── tests.php │ │ │ │ │ ├── WHM │ │ │ │ │ │ ├── class.CPanel.php │ │ │ │ │ │ ├── class.CpanelAwstats.php │ │ │ │ │ │ ├── class.WHM.php │ │ │ │ │ │ ├── class.WHME.php │ │ │ │ │ │ ├── class.WHMXML.php │ │ │ │ │ │ └── tests.php │ │ │ │ │ ├── Whois │ │ │ │ │ │ ├── class.Whois.php │ │ │ │ │ │ └── tests.php │ │ │ │ │ ├── Zeus │ │ │ │ │ │ ├── class.ZeusWS.php │ │ │ │ │ │ └── test.ZeusWS.php │ │ │ │ │ └── vBulletin │ │ │ │ │ │ ├── class.vBulletinConnector.php │ │ │ │ │ │ └── tests.php │ │ │ │ ├── DNS │ │ │ │ │ ├── TODO.txt │ │ │ │ │ ├── class.ADNSRecord.php │ │ │ │ │ ├── class.AbstractDNSZone.php │ │ │ │ │ ├── class.CNAMEDNSRecord.php │ │ │ │ │ ├── class.DNSRecord.php │ │ │ │ │ ├── class.DNSZone.php │ │ │ │ │ ├── class.DNSZone2.php │ │ │ │ │ ├── class.DNSZoneParser.php │ │ │ │ │ ├── class.MXDNSRecord.php │ │ │ │ │ ├── class.NSDNSRecord.php │ │ │ │ │ ├── class.PTRDNSRecord.php │ │ │ │ │ ├── class.SOADNSRecord.php │ │ │ │ │ ├── class.SPFDNSRecord.php │ │ │ │ │ ├── class.TXTDNSRecord.php │ │ │ │ │ ├── tests.php │ │ │ │ │ └── zones │ │ │ │ │ │ ├── 80snow.com.db │ │ │ │ │ │ ├── dreamlevels.com.db │ │ │ │ │ │ ├── example.com.db │ │ │ │ │ │ └── webta.net.db │ │ │ │ ├── FTP │ │ │ │ │ ├── class.FTP.php │ │ │ │ │ └── tests.php │ │ │ │ ├── HTTP │ │ │ │ │ ├── class.HTTPClient.php │ │ │ │ │ └── tests.php │ │ │ │ ├── Mail │ │ │ │ │ ├── Util │ │ │ │ │ │ └── class.Mail_RFC822.php │ │ │ │ │ ├── class.PHPMailer.php │ │ │ │ │ ├── class.PHPSmartyMailer.php │ │ │ │ │ ├── class.pop3.php │ │ │ │ │ ├── class.smtp.php │ │ │ │ │ ├── language │ │ │ │ │ │ ├── phpmailer.lang-br.php │ │ │ │ │ │ ├── phpmailer.lang-ca.php │ │ │ │ │ │ ├── phpmailer.lang-cz.php │ │ │ │ │ │ ├── phpmailer.lang-de.php │ │ │ │ │ │ ├── phpmailer.lang-dk.php │ │ │ │ │ │ ├── phpmailer.lang-en.php │ │ │ │ │ │ ├── phpmailer.lang-es.php │ │ │ │ │ │ ├── phpmailer.lang-et.php │ │ │ │ │ │ ├── phpmailer.lang-fi.php │ │ │ │ │ │ ├── phpmailer.lang-fo.php │ │ │ │ │ │ ├── phpmailer.lang-fr.php │ │ │ │ │ │ ├── phpmailer.lang-hu.php │ │ │ │ │ │ ├── phpmailer.lang-it.php │ │ │ │ │ │ ├── phpmailer.lang-ja.php │ │ │ │ │ │ ├── phpmailer.lang-nl.php │ │ │ │ │ │ ├── phpmailer.lang-no.php │ │ │ │ │ │ ├── phpmailer.lang-pl.php │ │ │ │ │ │ ├── phpmailer.lang-ro.php │ │ │ │ │ │ ├── phpmailer.lang-ru.php │ │ │ │ │ │ ├── phpmailer.lang-se.php │ │ │ │ │ │ └── phpmailer.lang-tr.php │ │ │ │ │ └── tests.php │ │ │ │ ├── NNTP │ │ │ │ │ ├── TODO.txt │ │ │ │ │ ├── class.NNTPClient.php │ │ │ │ │ ├── class.NNTPCore.php │ │ │ │ │ ├── class.NNTPProccess.php │ │ │ │ │ ├── class.NNTPRouter.php │ │ │ │ │ ├── class.NNTPServerStatus.php │ │ │ │ │ ├── class.UsenetCrawler.php │ │ │ │ │ ├── class.UsenetGroup.php │ │ │ │ │ ├── class.UsenetPosting.php │ │ │ │ │ ├── class.UsenetPostingManager.php │ │ │ │ │ └── tests.php │ │ │ │ ├── REST │ │ │ │ │ ├── class.RESTServer.php │ │ │ │ │ └── tests.php │ │ │ │ ├── RPC │ │ │ │ │ ├── class.RPCClient.php │ │ │ │ │ └── tests.php │ │ │ │ ├── SNMP │ │ │ │ │ ├── TODO.txt │ │ │ │ │ ├── class.SNMP.php │ │ │ │ │ ├── class.SNMPTree.php │ │ │ │ │ └── tests.php │ │ │ │ ├── SSH │ │ │ │ │ ├── class.SSH2.php │ │ │ │ │ ├── keys │ │ │ │ │ │ ├── key │ │ │ │ │ │ ├── key.pub │ │ │ │ │ │ ├── local │ │ │ │ │ │ └── local.pub │ │ │ │ │ └── tests.php │ │ │ │ ├── ScriptingClient │ │ │ │ │ ├── Adapters │ │ │ │ │ │ ├── class.AbstractScriptingAdapter.php │ │ │ │ │ │ ├── class.HTTPScriptingAdapter.php │ │ │ │ │ │ ├── class.MSSQLScriptingAdapter.php │ │ │ │ │ │ ├── class.MySQLScriptingAdapter.php │ │ │ │ │ │ ├── class.SSHScriptingAdapter.php │ │ │ │ │ │ ├── class.TelnetScriptingAdapter.php │ │ │ │ │ │ └── interface.ScriptingAdapter.php │ │ │ │ │ ├── class.ScriptingClient.php │ │ │ │ │ └── tests.php │ │ │ │ ├── Telnet │ │ │ │ │ ├── class.TelnetClient.php │ │ │ │ │ └── tests.php │ │ │ │ └── Util │ │ │ │ │ ├── class.IPAddress.php │ │ │ │ │ ├── class.IPUtils.php │ │ │ │ │ └── tests.php │ │ │ ├── PE │ │ │ │ ├── TODO.txt │ │ │ │ ├── class.ManagedProcess.php │ │ │ │ ├── class.PipedChain.php │ │ │ │ └── tests.php │ │ │ ├── Reflection │ │ │ │ ├── class.ReflectionClassEx.php │ │ │ │ └── class.ReflectionMethodEx.php │ │ │ ├── Security │ │ │ │ ├── Crypto │ │ │ │ │ ├── class.Crypto.php │ │ │ │ │ └── tests.php │ │ │ │ ├── GnuPG │ │ │ │ │ └── class.GnuPG.php │ │ │ │ ├── Licensing │ │ │ │ │ ├── TODO.txt │ │ │ │ │ ├── class.LicenseManager.php │ │ │ │ │ ├── license.tpl │ │ │ │ │ └── tests.php │ │ │ │ └── OpenSSL │ │ │ │ │ ├── class.SSLManager.php │ │ │ │ │ └── tests.php │ │ │ ├── System │ │ │ │ ├── Independent │ │ │ │ │ └── Shell │ │ │ │ │ │ ├── class.Getopt.php │ │ │ │ │ │ ├── class.ShellFactory.php │ │ │ │ │ │ └── tests.php │ │ │ │ ├── POSIX │ │ │ │ │ └── TODO.txt │ │ │ │ ├── TODO.txt │ │ │ │ ├── Unix │ │ │ │ │ ├── Accounting │ │ │ │ │ │ ├── class.SystemUser.php │ │ │ │ │ │ ├── class.SystemUserManager.php │ │ │ │ │ │ └── tests.php │ │ │ │ │ ├── IO │ │ │ │ │ │ ├── class.FileSystem.php │ │ │ │ │ │ ├── class.QuotaManager.php │ │ │ │ │ │ └── tests.php │ │ │ │ │ ├── Ifconfig │ │ │ │ │ │ ├── class.IfConfig.php │ │ │ │ │ │ └── tests.php │ │ │ │ │ ├── Shell │ │ │ │ │ │ ├── class.Shell.php │ │ │ │ │ │ └── tests.php │ │ │ │ │ └── Stats │ │ │ │ │ │ ├── class.SystemStats.php │ │ │ │ │ │ └── tests.php │ │ │ │ └── Windows │ │ │ │ │ └── Shell │ │ │ │ │ ├── class.Shell.php │ │ │ │ │ └── tests.php │ │ │ ├── TODO.txt │ │ │ ├── UI │ │ │ │ ├── Paging │ │ │ │ │ ├── class.Paging.php │ │ │ │ │ └── class.SQLPaging.php │ │ │ │ └── TreeMenu │ │ │ │ │ └── class.TreeMenu.php │ │ │ ├── class.Core.php │ │ │ ├── class.CoreException.php │ │ │ ├── class.CoreUtils.php │ │ │ ├── class.Observable.php │ │ │ ├── class.RedirectException.php │ │ │ └── tests.php │ │ ├── prepend.inc.php │ │ └── tests │ │ │ ├── class.NiceReporter.php │ │ │ ├── class.ShellReporter.php │ │ │ ├── incubator_tests.php │ │ │ ├── prepend.inc.php │ │ │ ├── simpletest │ │ │ ├── HELP_MY_TESTS_DONT_WORK_ANYMORE │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── VERSION │ │ │ ├── authentication.php │ │ │ ├── autorun.php │ │ │ ├── browser.php │ │ │ ├── collector.php │ │ │ ├── compatibility.php │ │ │ ├── cookies.php │ │ │ ├── default_reporter.php │ │ │ ├── detached.php │ │ │ ├── docs │ │ │ │ ├── en │ │ │ │ │ ├── authentication_documentation.html │ │ │ │ │ ├── browser_documentation.html │ │ │ │ │ ├── docs.css │ │ │ │ │ ├── expectation_documentation.html │ │ │ │ │ ├── form_testing_documentation.html │ │ │ │ │ ├── group_test_documentation.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mock_objects_documentation.html │ │ │ │ │ ├── overview.html │ │ │ │ │ ├── partial_mocks_documentation.html │ │ │ │ │ ├── reporter_documentation.html │ │ │ │ │ ├── unit_test_documentation.html │ │ │ │ │ └── web_tester_documentation.html │ │ │ │ └── fr │ │ │ │ │ ├── authentication_documentation.html │ │ │ │ │ ├── browser_documentation.html │ │ │ │ │ ├── docs.css │ │ │ │ │ ├── expectation_documentation.html │ │ │ │ │ ├── form_testing_documentation.html │ │ │ │ │ ├── group_test_documentation.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mock_objects_documentation.html │ │ │ │ │ ├── overview.html │ │ │ │ │ ├── partial_mocks_documentation.html │ │ │ │ │ ├── reporter_documentation.html │ │ │ │ │ ├── server_stubs_documentation.html │ │ │ │ │ ├── unit_test_documentation.html │ │ │ │ │ └── web_tester_documentation.html │ │ │ ├── dumper.php │ │ │ ├── eclipse.php │ │ │ ├── encoding.php │ │ │ ├── errors.php │ │ │ ├── exceptions.php │ │ │ ├── expectation.php │ │ │ ├── extensions │ │ │ │ ├── pear_test_case.php │ │ │ │ ├── phpunit_test_case.php │ │ │ │ ├── testdox.php │ │ │ │ └── testdox │ │ │ │ │ └── test.php │ │ │ ├── form.php │ │ │ ├── frames.php │ │ │ ├── http.php │ │ │ ├── invoker.php │ │ │ ├── mock_objects.php │ │ │ ├── page.php │ │ │ ├── parser.php │ │ │ ├── reflection_php4.php │ │ │ ├── reflection_php5.php │ │ │ ├── remote.php │ │ │ ├── reporter.php │ │ │ ├── scorer.php │ │ │ ├── selector.php │ │ │ ├── shell_tester.php │ │ │ ├── simpletest.php │ │ │ ├── socket.php │ │ │ ├── tag.php │ │ │ ├── test │ │ │ │ ├── acceptance_test.php │ │ │ │ ├── adapter_test.php │ │ │ │ ├── all_tests.php │ │ │ │ ├── authentication_test.php │ │ │ │ ├── bad_test_suite.php │ │ │ │ ├── browser_test.php │ │ │ │ ├── collector_test.php │ │ │ │ ├── command_line_test.php │ │ │ │ ├── compatibility_test.php │ │ │ │ ├── cookies_test.php │ │ │ │ ├── detached_test.php │ │ │ │ ├── dumper_test.php │ │ │ │ ├── eclipse_test.php │ │ │ │ ├── encoding_test.php │ │ │ │ ├── errors_test.php │ │ │ │ ├── exceptions_test.php │ │ │ │ ├── expectation_test.php │ │ │ │ ├── form_test.php │ │ │ │ ├── frames_test.php │ │ │ │ ├── http_test.php │ │ │ │ ├── interfaces_test.php │ │ │ │ ├── live_test.php │ │ │ │ ├── mock_objects_test.php │ │ │ │ ├── page_test.php │ │ │ │ ├── parse_error_test.php │ │ │ │ ├── parser_test.php │ │ │ │ ├── reflection_php4_test.php │ │ │ │ ├── reflection_php5_test.php │ │ │ │ ├── remote_test.php │ │ │ │ ├── shell_test.php │ │ │ │ ├── shell_tester_test.php │ │ │ │ ├── simpletest_test.php │ │ │ │ ├── socket_test.php │ │ │ │ ├── support │ │ │ │ │ ├── collector │ │ │ │ │ │ ├── collectable.1 │ │ │ │ │ │ └── collectable.2 │ │ │ │ │ ├── empty_test_file.php │ │ │ │ │ ├── latin1_sample │ │ │ │ │ ├── spl_examples.php │ │ │ │ │ ├── supplementary_upload_sample.txt │ │ │ │ │ └── upload_sample.txt │ │ │ │ ├── tag_test.php │ │ │ │ ├── test_groups.php │ │ │ │ ├── test_with_parse_error.php │ │ │ │ ├── unit_tester_test.php │ │ │ │ ├── unit_tests.php │ │ │ │ ├── url_test.php │ │ │ │ ├── user_agent_test.php │ │ │ │ ├── visual_test.php │ │ │ │ ├── web_tester_test.php │ │ │ │ └── xml_test.php │ │ │ ├── test_case.php │ │ │ ├── unit_tester.php │ │ │ ├── url.php │ │ │ ├── user_agent.php │ │ │ ├── web_tester.php │ │ │ └── xml.php │ │ │ └── tests.php │ ├── autoload.php │ ├── class.Application.php │ ├── class.Balance.php │ ├── class.Client.php │ ├── class.DBBalance.php │ ├── class.DataForm.php │ ├── class.DataFormField.php │ ├── class.Debug.php │ ├── class.DomainAllContactsForm.php │ ├── class.DomainRegistrationController.php │ ├── class.FQDN.php │ ├── class.Invoice.php │ ├── class.License.php │ ├── class.Order.php │ ├── class.PHPParser.php │ ├── class.Phone.php │ ├── class.Punycode.php │ ├── class.RegisterDomainAction.php │ ├── class.String.php │ ├── class.TaskQueue.php │ ├── class.UI.php │ ├── class.UpdateDomainContactAction.php │ ├── class.UpdateDomainNameserversAction.php │ ├── common.inc.php │ ├── exceptions │ │ ├── class.APIException.php │ │ ├── class.ApplicationException.php │ │ ├── class.ErrorList.php │ │ ├── class.LicensingException.php │ │ └── class.RegistryException.php │ ├── interface.IConfigurable.php │ ├── lang.php │ ├── licserver-common │ │ ├── CheckLicenseResult.php │ │ ├── LicenseService.php │ │ ├── PublicLicenseService.php │ │ ├── RestClient.php │ │ ├── XmlDataBinding.php │ │ └── ZendLicense.php │ ├── observers │ │ ├── class.BalanceInvoiceObserver.php │ │ ├── class.MailInvoiceObserver.php │ │ ├── class.PreregistrationInvoiceObserver.php │ │ ├── class.RegistryInvoiceObserver.php │ │ ├── interface.IGlobalObserver.php │ │ └── interface.IInvoiceObserver.php │ ├── prepend.inc.php │ ├── structs │ │ ├── struct.CONFIG.php │ │ ├── struct.CONTEXTS.php │ │ └── struct.ENABLE_EXTENSION.php │ ├── tests.php │ └── types │ │ ├── class.EnumFactory.php │ │ ├── enum.APPCONTEXT.php │ │ ├── enum.CONTACT_TYPE.php │ │ ├── enum.DOMAIN_DELETE_STATUS.php │ │ ├── enum.DOMAIN_STATUS.php │ │ ├── enum.EVENT_HANDLER_PHACE.php │ │ ├── enum.FORM_FIELD_TYPE.php │ │ ├── enum.INCOMPLETE_OPERATION.php │ │ ├── enum.INVOICE_ACTION_STATUS.php │ │ ├── enum.INVOICE_STATUS.php │ │ ├── enum.LICENSE_FLAGS.php │ │ ├── enum.OUTGOING_TRANSFER_STATUS.php │ │ ├── enum.PAYMENT_STATUS.php │ │ ├── enum.REGISTRY_RESPONSE_STATUS.php │ │ ├── enum.RFC3730_RESULT_CODE.php │ │ ├── enum.SECURITY_CONTEXT.php │ │ └── enum.TRANSFER_STATUS.php ├── templates │ ├── DNS │ │ └── zone.tpl │ ├── admin │ │ ├── api_logs_transaction_details.tpl │ │ ├── api_logs_view.tpl │ │ ├── balance_history.tpl │ │ ├── balance_operation.tpl │ │ ├── bulk_renew_step1.tpl │ │ ├── contact_change_owner.tpl │ │ ├── contact_full.tpl │ │ ├── contacts_change_requests.tpl │ │ ├── contacts_view.tpl │ │ ├── countries.tpl │ │ ├── currency_settings.tpl │ │ ├── custom_event_handler_config.tpl │ │ ├── custom_event_handlers.tpl │ │ ├── dnsdef_manage.tpl │ │ ├── domain_details.tpl │ │ ├── domains_await_delete_confirmation.tpl │ │ ├── domains_export.tpl │ │ ├── domains_import.tpl │ │ ├── domains_view.tpl │ │ ├── exception.tpl │ │ ├── extensions.tpl │ │ ├── fields_add.tpl │ │ ├── fields_view.tpl │ │ ├── history.tpl │ │ ├── history_details.tpl │ │ ├── inc │ │ │ ├── footer.tpl │ │ │ ├── header.tpl │ │ │ ├── intable_footer.tpl │ │ │ ├── intable_header.tpl │ │ │ ├── login_footer.tpl │ │ │ ├── login_header.tpl │ │ │ ├── paging.tpl │ │ │ ├── table_filter.tpl │ │ │ ├── table_footer.tpl │ │ │ ├── table_header.tpl │ │ │ └── update_information.tpl │ │ ├── index.tpl │ │ ├── inv_create.tpl │ │ ├── inv_details.tpl │ │ ├── inv_view.tpl │ │ ├── ipurposes_add.tpl │ │ ├── ipurposes_view.tpl │ │ ├── langs.tpl │ │ ├── log_transaction_details.tpl │ │ ├── login.tpl │ │ ├── logs_view.tpl │ │ ├── manage_tld_conflicts.tpl │ │ ├── module_certtest.tpl │ │ ├── module_certtest_result.tpl │ │ ├── module_config.tpl │ │ ├── modules_view.tpl │ │ ├── ns_add.tpl │ │ ├── ns_view.tpl │ │ ├── packages_add.tpl │ │ ├── packages_view.tpl │ │ ├── pmodule_config.tpl │ │ ├── pmodules_view.tpl │ │ ├── product_info.tpl │ │ ├── send_report.tpl │ │ ├── settings_api.tpl │ │ ├── settings_core.tpl │ │ ├── templates_manager.tpl │ │ ├── tld_price.tpl │ │ ├── tld_view.tpl │ │ ├── transfer.tpl │ │ ├── update_report.tpl │ │ ├── updates.tpl │ │ ├── users_add.tpl │ │ ├── users_edit.tpl │ │ └── users_view.tpl │ ├── cart_confirm.tpl │ ├── check_user.tpl │ ├── client │ │ ├── balance_deposit.tpl │ │ ├── balance_history.tpl │ │ ├── bulk_preregistration.tpl │ │ ├── bulk_reg_step1.tpl │ │ ├── bulk_reg_step2.tpl │ │ ├── bulk_reg_step3.tpl │ │ ├── bulk_reg_step4.tpl │ │ ├── bulk_reg_step5.tpl │ │ ├── bulk_reg_step6.tpl │ │ ├── bulk_renew_step1.tpl │ │ ├── bulk_transfer_step1.tpl │ │ ├── bulk_transfer_step2.tpl │ │ ├── bulk_transfer_step3.tpl │ │ ├── bulk_transfer_step4.tpl │ │ ├── bulk_update_complete.tpl │ │ ├── bulk_update_contacts_step1.tpl │ │ ├── bulk_update_contacts_step2.tpl │ │ ├── bulk_update_contacts_step3.tpl │ │ ├── bulk_update_ns_step1.tpl │ │ ├── bulk_update_ns_step2.tpl │ │ ├── bulk_update_ns_step3.tpl │ │ ├── change_contact_policy.tpl │ │ ├── complete_transfer.tpl │ │ ├── contact_create_step1.tpl │ │ ├── contact_create_step2.tpl │ │ ├── contacts.tpl │ │ ├── contacts_view.tpl │ │ ├── dnszone_edit.tpl │ │ ├── domain_change_pwd.tpl │ │ ├── domain_oper_details.tpl │ │ ├── domain_reg_complete.tpl │ │ ├── domain_reg_step_1.tpl │ │ ├── domain_reg_step_2.tpl │ │ ├── domain_reg_step_3.tpl │ │ ├── domain_reg_step_4.tpl │ │ ├── domain_reg_step_5.tpl │ │ ├── domain_remove_confirmation.tpl │ │ ├── domain_whois.tpl │ │ ├── domains_export.tpl │ │ ├── domains_view.tpl │ │ ├── email.tpl │ │ ├── exception.tpl │ │ ├── inc │ │ │ ├── bulk_step1.tpl │ │ │ ├── contact_form.tpl │ │ │ ├── contact_list.tpl │ │ │ ├── contact_table_filter.tpl │ │ │ ├── domain_all_contacts_form.tpl │ │ │ ├── domain_wizard_progress.tpl │ │ │ ├── edit_contact_form.tpl │ │ │ ├── footer.tpl │ │ │ ├── header.tpl │ │ │ ├── intable_footer.tpl │ │ │ ├── intable_header.tpl │ │ │ ├── login_footer.tpl │ │ │ ├── login_header.tpl │ │ │ ├── paging.tpl │ │ │ ├── table_filter.tpl │ │ │ ├── table_footer.tpl │ │ │ └── table_header.tpl │ │ ├── incomplete_orders.tpl │ │ ├── index.tpl │ │ ├── inv_view.tpl │ │ ├── invoice_print.tpl │ │ ├── login.tpl │ │ ├── make_payment.tpl │ │ ├── manage_contact.tpl │ │ ├── manage_flags.tpl │ │ ├── nhosts_view.tpl │ │ ├── ns.tpl │ │ ├── offlinebank_complete.tpl │ │ ├── order_info.tpl │ │ ├── password_cp.tpl │ │ ├── payment_complete.tpl │ │ ├── paymentdata.tpl │ │ ├── preregister_domain.tpl │ │ ├── profile_edit.tpl │ │ ├── renew.tpl │ │ ├── resend_transfer_request.tpl │ │ ├── settings_api.tpl │ │ ├── settings_core.tpl │ │ ├── sync.tpl │ │ └── update_status.tpl │ ├── demo.tpl │ ├── exception.tpl │ ├── exception_cp.tpl │ ├── inc │ │ ├── checklist.tpl │ │ ├── contact_dynamic_fields.tpl │ │ ├── date_picker.tpl │ │ ├── domain_status.tpl │ │ ├── dynamicform.tpl │ │ ├── errors.tpl │ │ ├── footer.tpl │ │ ├── header.tpl │ │ ├── index_welcome.tpl │ │ ├── pending_operations_details │ │ │ ├── trade.tpl │ │ │ └── update.tpl │ │ └── version.tpl │ ├── index.tpl │ ├── installation_tip.tpl │ ├── licensingexception.tpl │ ├── newclient.tpl │ ├── order_complete.tpl │ ├── payment_failed.tpl │ ├── payment_success_common.tpl │ ├── payment_success_reg.tpl │ ├── payment_success_transfer.tpl │ ├── paymentgate.tpl │ ├── placeorder.tpl │ ├── terms.tpl │ └── version.tpl └── www │ ├── .htaccess │ ├── admin │ ├── ajax │ │ ├── api_logs_view.php │ │ ├── contacts_view.php │ │ ├── domains_await_delete_confirmation.php │ │ ├── domains_view.php │ │ ├── inv_view.php │ │ ├── logs_view.php │ │ ├── users_list.php │ │ └── users_view.php │ ├── api_logs_transaction_details.php │ ├── api_logs_view.php │ ├── balance_history.php │ ├── balance_operation.php │ ├── bulk_renew.php │ ├── contact_change_owner.php │ ├── contact_full.php │ ├── contacts_change_requests.php │ ├── contacts_view.php │ ├── countries.php │ ├── css │ │ ├── calendar.css │ │ ├── login.css │ │ ├── main.css │ │ └── style.css │ ├── currency_settings.php │ ├── custom_event_handlers.php │ ├── dnsdef_manage.php │ ├── domain_details.php │ ├── domains_await_delete_confirmation.php │ ├── domains_export.php │ ├── domains_import.php │ ├── domains_view.php │ ├── extensions.php │ ├── fields_add.php │ ├── fields_view.php │ ├── history.php │ ├── history_details.php │ ├── images │ │ ├── add.gif │ │ ├── admin-sep.gif │ │ ├── arr_b.gif │ │ ├── arr_down.gif │ │ ├── arr_down_dsb.gif │ │ ├── arr_t.gif │ │ ├── arr_up.gif │ │ ├── arr_up_dsb.gif │ │ ├── bl.gif │ │ ├── bl_gray.gif │ │ ├── br.gif │ │ ├── br_gray.gif │ │ ├── button_empty.png │ │ ├── del.gif │ │ ├── delete.gif │ │ ├── delete_zone.gif │ │ ├── exception1.gif │ │ ├── excl.png │ │ ├── false.gif │ │ ├── false.png │ │ ├── folder.gif │ │ ├── folder.png │ │ ├── grey-bg.gif │ │ ├── help_close.gif │ │ ├── html.png │ │ ├── icon_err.gif │ │ ├── icon_err.png │ │ ├── icon_ihelp.gif │ │ ├── icon_offline.gif │ │ ├── icon_ok.gif │ │ ├── icon_online.gif │ │ ├── icon_shelp.gif │ │ ├── icon_warn.gif │ │ ├── icon_warn.png │ │ ├── key.png │ │ ├── layout_tpl.gif │ │ ├── left.gif │ │ ├── left.png │ │ ├── loading.gif │ │ ├── lock_16.gif │ │ ├── lock_16.png │ │ ├── log_icons │ │ │ ├── debug.png │ │ │ ├── error.png │ │ │ ├── fatal_error.png │ │ │ ├── info.png │ │ │ └── warning.png │ │ ├── loginbox.gif │ │ ├── logo_footer.gif │ │ ├── logo_footer.png │ │ ├── logo_header.gif │ │ ├── logo_header.png │ │ ├── mail.gif │ │ ├── mail_tpl.gif │ │ ├── menu-radio-off.png │ │ ├── menu-radio.png │ │ ├── minus.gif │ │ ├── newtask.gif │ │ ├── password.gif │ │ ├── plus.gif │ │ ├── printer.gif │ │ ├── rank_0.gif │ │ ├── rank_1.gif │ │ ├── rank_2.gif │ │ ├── rank_3.gif │ │ ├── rank_4.gif │ │ ├── rank_5.gif │ │ ├── rarrow-hover.gif │ │ ├── rarrow.gif │ │ ├── refresh.gif │ │ ├── right.gif │ │ ├── right.png │ │ ├── sm.gif │ │ ├── snake-loader.gif │ │ ├── sorta.gif │ │ ├── sortd.gif │ │ ├── spacer.gif │ │ ├── spf-icon-16x16.png │ │ ├── suspended_false.gif │ │ ├── suspended_true.gif │ │ ├── tab.gif │ │ ├── tabPage.gif │ │ ├── tabPage_a.gif │ │ ├── tab_a.gif │ │ ├── tl.gif │ │ ├── tl_gray.gif │ │ ├── tl_lightgray.gif │ │ ├── tr.gif │ │ ├── tr_gray.gif │ │ ├── tr_lightgray.gif │ │ ├── true.gif │ │ ├── true_black.gif │ │ ├── waiting_an.gif │ │ ├── webtalogo.gif │ │ ├── webtalogo_footer.gif │ │ ├── webtalogo_top.gif │ │ ├── wiz-complete.gif │ │ ├── wiz-incomplete.gif │ │ ├── wrench.png │ │ └── xcomma.gif │ ├── index.php │ ├── inv_create.php │ ├── inv_details.php │ ├── inv_print.php │ ├── inv_view.php │ ├── ipurposes_add.php │ ├── ipurposes_view.php │ ├── langs.php │ ├── log_transaction_details.php │ ├── login.php │ ├── logs_view.php │ ├── manage_tld_conflicts.php │ ├── module_certtest.php │ ├── module_config.php │ ├── modules_view.php │ ├── ns_add.php │ ├── ns_view.php │ ├── packages_add.php │ ├── packages_view.php │ ├── pmodule_config.php │ ├── pmodules_view.php │ ├── product_info.php │ ├── server │ │ ├── misc.php │ │ └── tmanager.php │ ├── settings_api.php │ ├── settings_core.php │ ├── src │ │ ├── append.inc.php │ │ ├── class.XMLNavigation.php │ │ ├── class.activecalendar.php │ │ ├── navigation.inc.php │ │ └── prepend.inc.php │ ├── templates_manager.php │ ├── tld_price.php │ ├── tld_view.php │ ├── transfer.php │ ├── users_add.php │ ├── users_edit.php │ ├── users_view.php │ └── xmlserver.php │ ├── api.php │ ├── client │ ├── ajax │ │ ├── balance_history.php │ │ ├── contacts_view.php │ │ ├── domains_view.php │ │ └── inv_view.php │ ├── balance_deposit.php │ ├── balance_history.php │ ├── bulk_preregistration.php │ ├── bulk_reg.php │ ├── bulk_renew.php │ ├── bulk_transfer.php │ ├── bulk_update_complete.php │ ├── bulk_update_contacts.php │ ├── bulk_update_ns.php │ ├── change_contact_policy.php │ ├── checkout.php │ ├── complete_trade.php │ ├── complete_transfer.php │ ├── contact_create.php │ ├── contacts.php │ ├── contacts_view.php │ ├── css │ │ ├── index.php │ │ ├── login.css │ │ ├── main.css │ │ └── style.css │ ├── dnszone_edit.php │ ├── domain_change.php │ ├── domain_change_pwd.php │ ├── domain_oper_details.php │ ├── domain_reg.php │ ├── domain_reg_complete.php │ ├── domain_whois.php │ ├── domains_export.php │ ├── domains_view.php │ ├── email.php │ ├── images │ │ ├── 8-em-check.png │ │ ├── add.gif │ │ ├── admin-sep.gif │ │ ├── arr_b.gif │ │ ├── arr_down.gif │ │ ├── arr_down_dsb.gif │ │ ├── arr_t.gif │ │ ├── arr_up.gif │ │ ├── arr_up_dsb.gif │ │ ├── bl.gif │ │ ├── bl_gray.gif │ │ ├── br.gif │ │ ├── br_gray.gif │ │ ├── bullet.png │ │ ├── button_empty.png │ │ ├── contact.png │ │ ├── contactb.png │ │ ├── del.gif │ │ ├── delete.gif │ │ ├── delete_zone.gif │ │ ├── deleteb.png │ │ ├── details.png │ │ ├── edit.png │ │ ├── exception1.gif │ │ ├── false.gif │ │ ├── folder.gif │ │ ├── folder.png │ │ ├── grey-bg.gif │ │ ├── help_close.gif │ │ ├── html.png │ │ ├── icon_err.gif │ │ ├── icon_err.png │ │ ├── icon_ihelp.gif │ │ ├── icon_ihelp.png │ │ ├── icon_offline.gif │ │ ├── icon_ok.gif │ │ ├── icon_online.gif │ │ ├── icon_shelp.gif │ │ ├── icon_warn.gif │ │ ├── icon_warn.png │ │ ├── index.php │ │ ├── layout_tpl.gif │ │ ├── left.gif │ │ ├── left.png │ │ ├── loading.gif │ │ ├── lock_16.gif │ │ ├── lock_16.png │ │ ├── locked.png │ │ ├── loginbox.gif │ │ ├── logo_footer.gif │ │ ├── logo_footer.png │ │ ├── logo_header.gif │ │ ├── logo_header.png │ │ ├── mail.gif │ │ ├── mail_tpl.gif │ │ ├── minus.gif │ │ ├── newtask.gif │ │ ├── password.gif │ │ ├── plus.gif │ │ ├── printer.gif │ │ ├── rank_0.gif │ │ ├── rank_1.gif │ │ ├── rank_2.gif │ │ ├── rank_3.gif │ │ ├── rank_4.gif │ │ ├── rank_5.gif │ │ ├── refresh.gif │ │ ├── renew.png │ │ ├── right.gif │ │ ├── right.png │ │ ├── sm.gif │ │ ├── snake-loader.gif │ │ ├── sorta.gif │ │ ├── sortd.gif │ │ ├── spacer.gif │ │ ├── spf-icon-16x16.png │ │ ├── suspended_false.gif │ │ ├── suspended_true.gif │ │ ├── tab.gif │ │ ├── tabPage.gif │ │ ├── tabPage_a.gif │ │ ├── tab_a.gif │ │ ├── tl.gif │ │ ├── tl_gray.gif │ │ ├── tl_lightgray.gif │ │ ├── tr.gif │ │ ├── tr_gray.gif │ │ ├── tr_lightgray.gif │ │ ├── true.gif │ │ ├── true_black.gif │ │ ├── unlocked.png │ │ ├── waiting_an.gif │ │ ├── wbull.png │ │ ├── webtalogo.gif │ │ ├── webtalogo_footer.gif │ │ ├── webtalogo_top.gif │ │ ├── wiz-complete.gif │ │ ├── wiz-incomplete.gif │ │ ├── wrench.png │ │ ├── wrenchb.png │ │ └── xcomma.gif │ ├── incomplete_orders.php │ ├── index.php │ ├── inv_print.php │ ├── inv_view.php │ ├── invoice_print.php │ ├── login.php │ ├── manage_contact.php │ ├── manage_flags.php │ ├── nhosts_view.php │ ├── ns.php │ ├── offlinebank_complete.php │ ├── order_info.php │ ├── password_cp.php │ ├── payment_complete.php │ ├── preregister_domain.php │ ├── profile_edit.php │ ├── renew.php │ ├── server │ │ ├── check.php │ │ ├── index.php │ │ └── misc.php │ ├── settings_api.php │ ├── settings_core.php │ ├── src │ │ ├── append.inc.php │ │ ├── class.XMLNavigation.php │ │ ├── class.activecalendar.php │ │ ├── get_managed_domain_object.php │ │ ├── navigation.inc.php │ │ ├── prepend.inc.php │ │ └── set_managed_domain.php │ ├── sync.php │ ├── update_status.php │ └── xmlserver.php │ ├── crossdomain.xml │ ├── css │ ├── SelectControl.css │ ├── calendar.css │ ├── checklist.css │ ├── ext-all.css │ ├── ext-ux.css │ ├── index.php │ ├── popup.css │ └── style.css │ ├── images │ ├── avail.gif │ ├── bg-control.gif │ ├── control-pimp-hover.gif │ ├── control-pimp.gif │ ├── dot.gif │ ├── dotted-line.gif │ ├── extjs-default │ │ ├── box │ │ │ ├── corners-blue.gif │ │ │ ├── corners.gif │ │ │ ├── l-blue.gif │ │ │ ├── l.gif │ │ │ ├── r-blue.gif │ │ │ ├── r.gif │ │ │ ├── tb-blue.gif │ │ │ └── tb.gif │ │ ├── button │ │ │ ├── btn-arrow.gif │ │ │ └── btn-sprite.gif │ │ ├── dd │ │ │ ├── drop-add.gif │ │ │ ├── drop-no.gif │ │ │ └── drop-yes.gif │ │ ├── editor │ │ │ └── tb-sprite.gif │ │ ├── form │ │ │ ├── checkbox.gif │ │ │ ├── clear-trigger.gif │ │ │ ├── clear-trigger.psd │ │ │ ├── date-trigger.gif │ │ │ ├── date-trigger.psd │ │ │ ├── error-tip-corners.gif │ │ │ ├── exclamation.gif │ │ │ ├── radio.gif │ │ │ ├── search-trigger.gif │ │ │ ├── search-trigger.psd │ │ │ ├── text-bg.gif │ │ │ ├── trigger-tpl.gif │ │ │ ├── trigger.gif │ │ │ └── trigger.psd │ │ ├── gradient-bg.gif │ │ ├── grid │ │ │ ├── arrow-left-white.gif │ │ │ ├── arrow-right-white.gif │ │ │ ├── col-move-bottom.gif │ │ │ ├── col-move-top.gif │ │ │ ├── columns.gif │ │ │ ├── dirty.gif │ │ │ ├── done.gif │ │ │ ├── drop-no.gif │ │ │ ├── drop-yes.gif │ │ │ ├── footer-bg.gif │ │ │ ├── grid-blue-hd.gif │ │ │ ├── grid-blue-split.gif │ │ │ ├── grid-hrow.gif │ │ │ ├── grid-loading.gif │ │ │ ├── grid-split.gif │ │ │ ├── grid-vista-hd.gif │ │ │ ├── grid3-hd-btn.gif │ │ │ ├── grid3-hrow-over.gif │ │ │ ├── grid3-hrow.gif │ │ │ ├── grid3-special-col-bg.gif │ │ │ ├── grid3-special-col-sel-bg.gif │ │ │ ├── group-by.gif │ │ │ ├── group-expand-sprite.gif │ │ │ ├── hd-pop.gif │ │ │ ├── hmenu-asc.gif │ │ │ ├── hmenu-desc.gif │ │ │ ├── hmenu-lock.gif │ │ │ ├── hmenu-lock.png │ │ │ ├── hmenu-unlock.gif │ │ │ ├── hmenu-unlock.png │ │ │ ├── invalid_line.gif │ │ │ ├── loading.gif │ │ │ ├── mso-hd.gif │ │ │ ├── nowait.gif │ │ │ ├── page-first-disabled.gif │ │ │ ├── page-first.gif │ │ │ ├── page-last-disabled.gif │ │ │ ├── page-last.gif │ │ │ ├── page-next-disabled.gif │ │ │ ├── page-next.gif │ │ │ ├── page-prev-disabled.gif │ │ │ ├── page-prev.gif │ │ │ ├── pick-button.gif │ │ │ ├── refresh.gif │ │ │ ├── row-check-sprite.gif │ │ │ ├── row-expand-sprite.gif │ │ │ ├── row-over.gif │ │ │ ├── row-sel.gif │ │ │ ├── sort_asc.gif │ │ │ ├── sort_desc.gif │ │ │ └── wait.gif │ │ ├── layout │ │ │ ├── collapse.gif │ │ │ ├── expand.gif │ │ │ ├── gradient-bg.gif │ │ │ ├── mini-bottom.gif │ │ │ ├── mini-left.gif │ │ │ ├── mini-right.gif │ │ │ ├── mini-top.gif │ │ │ ├── ns-collapse.gif │ │ │ ├── ns-expand.gif │ │ │ ├── panel-close.gif │ │ │ ├── panel-title-bg.gif │ │ │ ├── panel-title-light-bg.gif │ │ │ ├── stick.gif │ │ │ ├── stuck.gif │ │ │ ├── tab-close-on.gif │ │ │ └── tab-close.gif │ │ ├── menu │ │ │ ├── checked.gif │ │ │ ├── group-checked.gif │ │ │ ├── item-over.gif │ │ │ ├── menu-parent.gif │ │ │ ├── menu.gif │ │ │ └── unchecked.gif │ │ ├── panel │ │ │ ├── corners-sprite.gif │ │ │ ├── left-right.gif │ │ │ ├── light-hd.gif │ │ │ ├── tool-sprite-tpl.gif │ │ │ ├── tool-sprites.gif │ │ │ ├── tools-sprites-trans.gif │ │ │ ├── top-bottom.gif │ │ │ ├── top-bottom.png │ │ │ ├── white-corners-sprite.gif │ │ │ ├── white-left-right.gif │ │ │ └── white-top-bottom.gif │ │ ├── progress │ │ │ └── progress-bg.gif │ │ ├── qtip │ │ │ ├── bg.gif │ │ │ ├── close.gif │ │ │ └── tip-sprite.gif │ │ ├── s.gif │ │ ├── shadow-c.png │ │ ├── shadow-c.psd │ │ ├── shadow-lr.png │ │ ├── shadow.png │ │ ├── shared │ │ │ ├── blue-loading.gif │ │ │ ├── calendar.gif │ │ │ ├── glass-bg.gif │ │ │ ├── hd-sprite.gif │ │ │ ├── large-loading.gif │ │ │ ├── left-btn.gif │ │ │ ├── loading-balls.gif │ │ │ ├── right-btn.gif │ │ │ └── warning.gif │ │ ├── sizer │ │ │ ├── e-handle-dark.gif │ │ │ ├── e-handle.gif │ │ │ ├── ne-handle-dark.gif │ │ │ ├── ne-handle.gif │ │ │ ├── nw-handle-dark.gif │ │ │ ├── nw-handle.gif │ │ │ ├── s-handle-dark.gif │ │ │ ├── s-handle.gif │ │ │ ├── se-handle-dark.gif │ │ │ ├── se-handle.gif │ │ │ ├── square.gif │ │ │ ├── sw-handle-dark.gif │ │ │ └── sw-handle.gif │ │ ├── slider │ │ │ ├── slider-bg.png │ │ │ ├── slider-thumb.png │ │ │ ├── slider-v-bg.png │ │ │ └── slider-v-thumb.png │ │ ├── tabs │ │ │ ├── scroll-left.gif │ │ │ ├── scroll-right.gif │ │ │ ├── scroller-bg.gif │ │ │ ├── tab-btm-inactive-left-bg.gif │ │ │ ├── tab-btm-inactive-right-bg.gif │ │ │ ├── tab-btm-left-bg.gif │ │ │ ├── tab-btm-right-bg.gif │ │ │ ├── tab-close.gif │ │ │ ├── tab-strip-bg.gif │ │ │ ├── tab-strip-bg.png │ │ │ ├── tab-strip-btm-bg.gif │ │ │ └── tabs-sprite.gif │ │ ├── toolbar │ │ │ ├── bg.gif │ │ │ ├── btn-arrow-light.gif │ │ │ ├── btn-arrow.gif │ │ │ ├── btn-over-bg.gif │ │ │ ├── gray-bg.gif │ │ │ ├── tb-bg.gif │ │ │ └── tb-btn-sprite.gif │ │ ├── tree │ │ │ ├── arrows.gif │ │ │ ├── drop-add.gif │ │ │ ├── drop-between.gif │ │ │ ├── drop-no.gif │ │ │ ├── drop-over.gif │ │ │ ├── drop-under.gif │ │ │ ├── drop-yes.gif │ │ │ ├── elbow-end-minus-nl.gif │ │ │ ├── elbow-end-minus.gif │ │ │ ├── elbow-end-plus-nl.gif │ │ │ ├── elbow-end-plus.gif │ │ │ ├── elbow-end.gif │ │ │ ├── elbow-line.gif │ │ │ ├── elbow-minus-nl.gif │ │ │ ├── elbow-minus.gif │ │ │ ├── elbow-plus-nl.gif │ │ │ ├── elbow-plus.gif │ │ │ ├── elbow.gif │ │ │ ├── folder-open.gif │ │ │ ├── folder.gif │ │ │ ├── leaf.gif │ │ │ ├── loading.gif │ │ │ └── s.gif │ │ └── window │ │ │ ├── icon-error.gif │ │ │ ├── icon-info.gif │ │ │ ├── icon-question.gif │ │ │ ├── icon-warning.gif │ │ │ ├── left-corners.png │ │ │ ├── left-corners.psd │ │ │ ├── left-right.png │ │ │ ├── left-right.psd │ │ │ ├── right-corners.png │ │ │ ├── right-corners.psd │ │ │ ├── top-bottom.png │ │ │ └── top-bottom.psd │ ├── fail.gif │ ├── fail.png │ ├── ico-add.png │ ├── ico-key.png │ ├── index.php │ ├── lang │ │ ├── el_GR.gif │ │ ├── en_US.gif │ │ └── index.php │ ├── load.gif │ ├── menu-radio-off.gif │ ├── menu-radio.gif │ ├── modules │ │ ├── .htaccess │ │ ├── BeanStream_icon.gif │ │ ├── BeanStream_icon.png │ │ ├── EZBill_icon.gif │ │ ├── EZBill_icon.png │ │ ├── OfflineBank_icon.gif │ │ ├── OfflineBank_icon.png │ │ ├── PayPal_icon.gif │ │ ├── PayPal_icon.png │ │ ├── ProxyPay3_icon.gif │ │ ├── ProxyPay3_icon.png │ │ ├── SetCom_icon.gif │ │ ├── SetCom_icon.png │ │ ├── TwoCheckout_icon.gif │ │ ├── TwoCheckout_icon.png │ │ ├── UnionPay_icon.gif │ │ ├── UnionPay_icon.png │ │ ├── WebMoney_icon.gif │ │ ├── WebMoney_icon.png │ │ ├── american_express_logo_2.gif │ │ ├── american_express_logo_3.gif │ │ ├── balance_icon.png │ │ ├── credit_card_logos_13.gif │ │ ├── discover_logo_2.gif │ │ ├── discover_logo_3.gif │ │ ├── index.php │ │ ├── mastercard_logo_2.gif │ │ ├── mastercard_logo_3.gif │ │ ├── template.png │ │ ├── visa_logo_2.gif │ │ ├── visa_logo_3.gif │ │ └── visa_mastercard_logo_6.gif │ ├── order_arrow.gif │ ├── payment.gif │ ├── popup.png │ ├── popup │ │ ├── b.png │ │ ├── bl.png │ │ ├── br.gif │ │ ├── br.png │ │ ├── close.png │ │ ├── index.php │ │ ├── l.png │ │ ├── r.png │ │ ├── t.png │ │ ├── tail.png │ │ ├── tl.png │ │ └── tr.png │ ├── rarrow-hover.gif │ ├── rarrow.gif │ ├── s.gif │ ├── slide-top.png │ ├── trash.gif │ ├── trash.png │ ├── unavail.gif │ ├── unavail.png │ ├── wait.gif │ ├── wait.png │ ├── whois.gif │ ├── whois.png │ ├── widget_flipbtn.gif │ ├── widget_flipbtn_btm.gif │ ├── widget_flipline.gif │ ├── widget_tab_reg_active.jpg │ ├── widget_tab_reg_active.png │ ├── widget_tab_reg_inactive.jpg │ ├── widget_tab_reg_inactive.png │ ├── widget_tab_trans_active.jpg │ ├── widget_tab_trans_active.png │ ├── widget_tab_trans_inactive.jpg │ ├── widget_tab_trans_inactive.png │ ├── wiz-main-grad.jpg │ ├── wiz-wiz_btn_next_dis.gif │ ├── wiz_btn_cancel.gif │ ├── wiz_btn_check.gif │ ├── wiz_btn_co.gif │ ├── wiz_btn_next.gif │ ├── wiz_btn_prev.gif │ ├── wiz_btn_recover.gif │ ├── wiz_tab_active.jpg │ ├── wiz_tab_active_l.gif │ ├── wiz_tab_active_m.gif │ ├── wiz_tab_active_r.gif │ ├── wiz_tab_inactive.jpg │ ├── wiz_tab_inactive_l.gif │ ├── wiz_tab_inactive_m.gif │ └── wiz_tab_inactive_r.gif │ ├── index.php │ ├── ipn.php │ ├── js │ ├── Checklist.js │ ├── ContactsManager.js │ ├── ContactsManagerBulk.js │ ├── DomainChecker.js │ ├── calendar.inc.js │ ├── calendar │ │ ├── calendar-en.js │ │ ├── calendar.css │ │ └── calendar.js │ ├── class.Cart.js │ ├── class.LibWebta.js │ ├── class.NewPopup.js │ ├── class.SelectControl.js │ ├── class.Tweaker.js │ ├── common.inc.js │ ├── common.js │ ├── dmenu │ │ ├── dmenu.css │ │ └── dmenu.js │ ├── extjs │ │ ├── ext-all-debug.js │ │ ├── ext-all.js │ │ ├── ext-prototype-adapter.js │ │ ├── ext-ux-lang.js.php │ │ └── ext-ux.js │ ├── moo │ │ ├── index.php │ │ ├── moo.fx.js │ │ └── moo.fx.pack.js │ ├── phone.js │ ├── prototype.js │ ├── rectmarquee.js │ ├── src │ │ ├── builder.js │ │ ├── controls.js │ │ ├── dragdrop.js │ │ ├── effects.js │ │ ├── index.php │ │ ├── scriptaculous.js │ │ ├── slider.js │ │ ├── sound.js │ │ └── unittest.js │ ├── tooltip-v0.1.js │ └── treemenu.js │ ├── logo.php │ ├── order │ ├── calculate_placeorder.php │ ├── check_user.php │ ├── index.php │ ├── newclient.php │ ├── placeorder.php │ ├── process_payment.php │ └── select_user_type.php │ ├── payment_failed.php │ ├── payment_success.php │ ├── pdt.php │ ├── server │ ├── domain.php │ ├── misc.php │ └── whois.php │ ├── src │ └── prepend.inc.php │ ├── terms.php │ ├── testenvironment.php │ └── tests.php └── sql └── database.sql /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/README.md -------------------------------------------------------------------------------- /app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/.DS_Store -------------------------------------------------------------------------------- /app/.cache/.dataModel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/.cache/.dataModel -------------------------------------------------------------------------------- /app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/.project -------------------------------------------------------------------------------- /app/bin/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/.DS_Store -------------------------------------------------------------------------------- /app/bin/MIGRATION_README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/MIGRATION_README.txt -------------------------------------------------------------------------------- /app/bin/add-tlds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/add-tlds.php -------------------------------------------------------------------------------- /app/bin/ch-obtain-transfercode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/ch-obtain-transfercode.php -------------------------------------------------------------------------------- /app/bin/dotnl-migrate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/dotnl-migrate.php -------------------------------------------------------------------------------- /app/bin/encode_db_configs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/encode_db_configs.php -------------------------------------------------------------------------------- /app/bin/enom-get-extattr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/enom-get-extattr.php -------------------------------------------------------------------------------- /app/bin/eppcmd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/eppcmd.php -------------------------------------------------------------------------------- /app/bin/fix-autorenew-domains.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/fix-autorenew-domains.php -------------------------------------------------------------------------------- /app/bin/fix-contacts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/fix-contacts.php -------------------------------------------------------------------------------- /app/bin/fix-dnsbe-tech-contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/fix-dnsbe-tech-contact.php -------------------------------------------------------------------------------- /app/bin/fix-renew-bug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/fix-renew-bug.php -------------------------------------------------------------------------------- /app/bin/fix-se-orgno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/fix-se-orgno.php -------------------------------------------------------------------------------- /app/bin/fix-site-url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/fix-site-url.php -------------------------------------------------------------------------------- /app/bin/fix_currency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/fix_currency.php -------------------------------------------------------------------------------- /app/bin/fix_expiredate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/fix_expiredate.php -------------------------------------------------------------------------------- /app/bin/fix_prices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/fix_prices.php -------------------------------------------------------------------------------- /app/bin/import-contacts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/import-contacts.php -------------------------------------------------------------------------------- /app/bin/manifest2c.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/manifest2c.php -------------------------------------------------------------------------------- /app/bin/phone_convert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/phone_convert.php -------------------------------------------------------------------------------- /app/bin/reset-pw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/reset-pw.php -------------------------------------------------------------------------------- /app/bin/sync-jwhois.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/sync-jwhois.php -------------------------------------------------------------------------------- /app/bin/sync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/sync.php -------------------------------------------------------------------------------- /app/bin/testenvironment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/testenvironment.php -------------------------------------------------------------------------------- /app/bin/tsmarty2c.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/tsmarty2c.php -------------------------------------------------------------------------------- /app/bin/upgrade-to-v3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/upgrade-to-v3.php -------------------------------------------------------------------------------- /app/bin/upgrade-to-v31-lu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/upgrade-to-v31-lu.php -------------------------------------------------------------------------------- /app/bin/upgrade-to-v31.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/upgrade-to-v31.php -------------------------------------------------------------------------------- /app/bin/xml2c.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/xml2c.php -------------------------------------------------------------------------------- /app/bin/zendid/zendid_freebsd4x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/zendid/zendid_freebsd4x -------------------------------------------------------------------------------- /app/bin/zendid/zendid_freebsd5x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/zendid/zendid_freebsd5x -------------------------------------------------------------------------------- /app/bin/zendid/zendid_linux32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/zendid/zendid_linux32 -------------------------------------------------------------------------------- /app/bin/zendid/zendid_linux64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/zendid/zendid_linux64 -------------------------------------------------------------------------------- /app/bin/zendid/zendid_macosx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/zendid/zendid_macosx -------------------------------------------------------------------------------- /app/bin/zendid/zendid_solaris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/bin/zendid/zendid_solaris -------------------------------------------------------------------------------- /app/clean_cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/clean_cache.sh -------------------------------------------------------------------------------- /app/cron/class.AssignDiscountProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/cron/class.AssignDiscountProcess.php -------------------------------------------------------------------------------- /app/cron/class.CleanZombyUsersProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/cron/class.CleanZombyUsersProcess.php -------------------------------------------------------------------------------- /app/cron/class.DNSPushProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/cron/class.DNSPushProcess.php -------------------------------------------------------------------------------- /app/cron/class.LogRotateProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/cron/class.LogRotateProcess.php -------------------------------------------------------------------------------- /app/cron/class.PollQueueEventProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/cron/class.PollQueueEventProcess.php -------------------------------------------------------------------------------- /app/cron/class.RenewProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/cron/class.RenewProcess.php -------------------------------------------------------------------------------- /app/cron/class.TaskQueueProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/cron/class.TaskQueueProcess.php -------------------------------------------------------------------------------- /app/cron/class.WDRPProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/cron/class.WDRPProcess.php -------------------------------------------------------------------------------- /app/cron/cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/cron/cron.php -------------------------------------------------------------------------------- /app/cron/cron.pid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/etc/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/etc/.htaccess -------------------------------------------------------------------------------- /app/etc/admin_nav.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/etc/admin_nav.xml -------------------------------------------------------------------------------- /app/etc/client_domain_nav.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/etc/client_domain_nav.xml -------------------------------------------------------------------------------- /app/etc/client_nav.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/etc/client_nav.xml -------------------------------------------------------------------------------- /app/etc/config.ini.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/etc/config.ini.example -------------------------------------------------------------------------------- /app/etc/version: -------------------------------------------------------------------------------- 1 | 2490 -------------------------------------------------------------------------------- /app/etc/whoisservers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/etc/whoisservers.txt -------------------------------------------------------------------------------- /app/events/class.RESTGlobalObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/events/class.RESTGlobalObserver.php -------------------------------------------------------------------------------- /app/events/class.RESTInvoiceObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/events/class.RESTInvoiceObserver.php -------------------------------------------------------------------------------- /app/events/class.RESTPaymentObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/events/class.RESTPaymentObserver.php -------------------------------------------------------------------------------- /app/events/class.RESTRegistryObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/events/class.RESTRegistryObserver.php -------------------------------------------------------------------------------- /app/events/includes/class.RESTObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/events/includes/class.RESTObserver.php -------------------------------------------------------------------------------- /app/lang/en_US/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/lang/en_US/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /app/lang/en_US/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/lang/en_US/LC_MESSAGES/default.po -------------------------------------------------------------------------------- /app/lang/en_US/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/lang/en_US/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /app/lang/en_US/email_templates/signup.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/lang/en_US/email_templates/signup.eml -------------------------------------------------------------------------------- /app/modules/class.Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/class.Module.php -------------------------------------------------------------------------------- /app/modules/class.ModuleFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/class.ModuleFactory.php -------------------------------------------------------------------------------- /app/modules/payments/Sermepa/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/payments/Sermepa/tests.php -------------------------------------------------------------------------------- /app/modules/registries/AFNIC/frnic-1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/AFNIC/frnic-1.0.xsd -------------------------------------------------------------------------------- /app/modules/registries/AFNIC/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/AFNIC/module.xml -------------------------------------------------------------------------------- /app/modules/registries/AFNIC/xml/hello.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/AFNIC/xml/hello.xml -------------------------------------------------------------------------------- /app/modules/registries/AFNIC/xml/login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/AFNIC/xml/login.xml -------------------------------------------------------------------------------- /app/modules/registries/AFNIC/xml/logout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/AFNIC/xml/logout.xml -------------------------------------------------------------------------------- /app/modules/registries/Afilias/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/Afilias/module.xml -------------------------------------------------------------------------------- /app/modules/registries/Afilias/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/Afilias/tests.php -------------------------------------------------------------------------------- /app/modules/registries/COCCAEPP1/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/COCCAEPP1/module.xml -------------------------------------------------------------------------------- /app/modules/registries/COCCAEPP1/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/COCCAEPP1/tests.php -------------------------------------------------------------------------------- /app/modules/registries/COCCAEPP2/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/COCCAEPP2/module.xml -------------------------------------------------------------------------------- /app/modules/registries/COCCAEPP3/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/COCCAEPP3/module.xml -------------------------------------------------------------------------------- /app/modules/registries/DotBE/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotBE/module.xml -------------------------------------------------------------------------------- /app/modules/registries/DotBE/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotBE/tests.php -------------------------------------------------------------------------------- /app/modules/registries/DotBE/xml/hello.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotBE/xml/hello.xml -------------------------------------------------------------------------------- /app/modules/registries/DotBE/xml/login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotBE/xml/login.xml -------------------------------------------------------------------------------- /app/modules/registries/DotBE/xml/logout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotBE/xml/logout.xml -------------------------------------------------------------------------------- /app/modules/registries/DotEU/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotEU/module.xml -------------------------------------------------------------------------------- /app/modules/registries/DotEU/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotEU/tests.php -------------------------------------------------------------------------------- /app/modules/registries/DotEU/xml/hello.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotEU/xml/hello.xml -------------------------------------------------------------------------------- /app/modules/registries/DotEU/xml/login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotEU/xml/login.xml -------------------------------------------------------------------------------- /app/modules/registries/DotEU/xml/logout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotEU/xml/logout.xml -------------------------------------------------------------------------------- /app/modules/registries/DotKZ/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotKZ/module.xml -------------------------------------------------------------------------------- /app/modules/registries/DotKZ/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotKZ/tests.php -------------------------------------------------------------------------------- /app/modules/registries/DotKZ/xml/hello.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotKZ/xml/hello.xml -------------------------------------------------------------------------------- /app/modules/registries/DotKZ/xml/login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotKZ/xml/login.xml -------------------------------------------------------------------------------- /app/modules/registries/DotKZ/xml/logout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotKZ/xml/logout.xml -------------------------------------------------------------------------------- /app/modules/registries/DotMX/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotMX/module.xml -------------------------------------------------------------------------------- /app/modules/registries/DotMX/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotMX/tests.php -------------------------------------------------------------------------------- /app/modules/registries/DotMX/xml/hello.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotMX/xml/hello.xml -------------------------------------------------------------------------------- /app/modules/registries/DotMX/xml/login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotMX/xml/login.xml -------------------------------------------------------------------------------- /app/modules/registries/DotMX/xml/logout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotMX/xml/logout.xml -------------------------------------------------------------------------------- /app/modules/registries/DotNG/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotNG/module.xml -------------------------------------------------------------------------------- /app/modules/registries/DotNO/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotNO/module.xml -------------------------------------------------------------------------------- /app/modules/registries/DotNO/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotNO/tests.php -------------------------------------------------------------------------------- /app/modules/registries/DotNO/xml/hello.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotNO/xml/hello.xml -------------------------------------------------------------------------------- /app/modules/registries/DotNO/xml/login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotNO/xml/login.xml -------------------------------------------------------------------------------- /app/modules/registries/DotNO/xml/logout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotNO/xml/logout.xml -------------------------------------------------------------------------------- /app/modules/registries/DotPT/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotPT/module.xml -------------------------------------------------------------------------------- /app/modules/registries/DotPT/xml/hello.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotPT/xml/hello.xml -------------------------------------------------------------------------------- /app/modules/registries/DotPT/xml/login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotPT/xml/login.xml -------------------------------------------------------------------------------- /app/modules/registries/DotPT/xml/logout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotPT/xml/logout.xml -------------------------------------------------------------------------------- /app/modules/registries/DotSE/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotSE/module.xml -------------------------------------------------------------------------------- /app/modules/registries/DotSE/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotSE/tests.php -------------------------------------------------------------------------------- /app/modules/registries/DotSE/xml/hello.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotSE/xml/hello.xml -------------------------------------------------------------------------------- /app/modules/registries/DotSE/xml/login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotSE/xml/login.xml -------------------------------------------------------------------------------- /app/modules/registries/DotSE/xml/logout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotSE/xml/logout.xml -------------------------------------------------------------------------------- /app/modules/registries/DotTEL/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotTEL/module.xml -------------------------------------------------------------------------------- /app/modules/registries/DotTEL/testprefs: -------------------------------------------------------------------------------- 1 | num=28 2 | -------------------------------------------------------------------------------- /app/modules/registries/DotTEL/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotTEL/tests.php -------------------------------------------------------------------------------- /app/modules/registries/DotTEL/xml/hello.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotTEL/xml/hello.xml -------------------------------------------------------------------------------- /app/modules/registries/DotTEL/xml/login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/DotTEL/xml/login.xml -------------------------------------------------------------------------------- /app/modules/registries/EPPCH/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/EPPCH/module.xml -------------------------------------------------------------------------------- /app/modules/registries/EPPCH/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/EPPCH/tests.php -------------------------------------------------------------------------------- /app/modules/registries/EPPCH/xml/hello.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/EPPCH/xml/hello.xml -------------------------------------------------------------------------------- /app/modules/registries/EPPCH/xml/login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/EPPCH/xml/login.xml -------------------------------------------------------------------------------- /app/modules/registries/EPPCH/xml/logout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/EPPCH/xml/logout.xml -------------------------------------------------------------------------------- /app/modules/registries/EPPGR/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/EPPGR/module.xml -------------------------------------------------------------------------------- /app/modules/registries/EPPGR/ssl/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/EPPGR/ssl/cert.pem -------------------------------------------------------------------------------- /app/modules/registries/EPPGR/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/EPPGR/tests.php -------------------------------------------------------------------------------- /app/modules/registries/EPPGR/xml/hello.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/EPPGR/xml/hello.xml -------------------------------------------------------------------------------- /app/modules/registries/EPPGR/xml/login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/EPPGR/xml/login.xml -------------------------------------------------------------------------------- /app/modules/registries/EPPGR/xml/logout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/EPPGR/xml/logout.xml -------------------------------------------------------------------------------- /app/modules/registries/EPPLU/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/EPPLU/module.xml -------------------------------------------------------------------------------- /app/modules/registries/EPPLU/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/EPPLU/tests.php -------------------------------------------------------------------------------- /app/modules/registries/EPPLU/xml/hello.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/EPPLU/xml/hello.xml -------------------------------------------------------------------------------- /app/modules/registries/EPPLU/xml/login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/EPPLU/xml/login.xml -------------------------------------------------------------------------------- /app/modules/registries/EPPLU/xml/logout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/EPPLU/xml/logout.xml -------------------------------------------------------------------------------- /app/modules/registries/EPPNL/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/EPPNL/module.xml -------------------------------------------------------------------------------- /app/modules/registries/EPPNL/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/EPPNL/tests.php -------------------------------------------------------------------------------- /app/modules/registries/EPPNL/xml/hello.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/EPPNL/xml/hello.xml -------------------------------------------------------------------------------- /app/modules/registries/EPPNL/xml/login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/EPPNL/xml/login.xml -------------------------------------------------------------------------------- /app/modules/registries/EPPNL/xml/logout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/EPPNL/xml/logout.xml -------------------------------------------------------------------------------- /app/modules/registries/EPPZA/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/EPPZA/module.xml -------------------------------------------------------------------------------- /app/modules/registries/EPPZA/ssl/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/EPPZA/ssl/cert.pem -------------------------------------------------------------------------------- /app/modules/registries/EPPZA/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/EPPZA/tests.php -------------------------------------------------------------------------------- /app/modules/registries/EPPZA/xml/hello.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/EPPZA/xml/hello.xml -------------------------------------------------------------------------------- /app/modules/registries/EPPZA/xml/login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/EPPZA/xml/login.xml -------------------------------------------------------------------------------- /app/modules/registries/EPPZA/xml/logout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/EPPZA/xml/logout.xml -------------------------------------------------------------------------------- /app/modules/registries/Enom/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/Enom/module.xml -------------------------------------------------------------------------------- /app/modules/registries/Enom/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/Enom/tests.php -------------------------------------------------------------------------------- /app/modules/registries/Manifest.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/Manifest.xsl -------------------------------------------------------------------------------- /app/modules/registries/SRSPlus/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/SRSPlus/tests.php -------------------------------------------------------------------------------- /app/modules/registries/class.Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/class.Contact.php -------------------------------------------------------------------------------- /app/modules/registries/class.Domain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/class.Domain.php -------------------------------------------------------------------------------- /app/modules/registries/class.JWhois.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/class.JWhois.php -------------------------------------------------------------------------------- /app/modules/registries/manifest.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/manifest.xsd -------------------------------------------------------------------------------- /app/modules/registries/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/modules/registries/tests.php -------------------------------------------------------------------------------- /app/preinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/preinstall.sh -------------------------------------------------------------------------------- /app/src/Api/Client/class.Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Api/Client/class.Service.php -------------------------------------------------------------------------------- /app/src/Api/class.KeyTool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Api/class.KeyTool.php -------------------------------------------------------------------------------- /app/src/Api/class.RestServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Api/class.RestServer.php -------------------------------------------------------------------------------- /app/src/Api/class.Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Api/class.Service.php -------------------------------------------------------------------------------- /app/src/Api/class.Service20090622.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Api/class.Service20090622.php -------------------------------------------------------------------------------- /app/src/Api/class.Service20100408.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Api/class.Service20100408.php -------------------------------------------------------------------------------- /app/src/Api/class.Service20100524.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Api/class.Service20100524.php -------------------------------------------------------------------------------- /app/src/Api/class.Service20110217.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Api/class.Service20110217.php -------------------------------------------------------------------------------- /app/src/Api/class.Service20111014.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Api/class.Service20111014.php -------------------------------------------------------------------------------- /app/src/Api/eppdrs-api.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Api/eppdrs-api.xsd -------------------------------------------------------------------------------- /app/src/Api/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Api/tests.php -------------------------------------------------------------------------------- /app/src/Lib/Data/DB/ADODB/adodb.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Lib/Data/DB/ADODB/adodb.inc.php -------------------------------------------------------------------------------- /app/src/Lib/Data/DB/ADODB/docs/tute.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Lib/Data/DB/ADODB/docs/tute.htm -------------------------------------------------------------------------------- /app/src/Lib/Data/DB/ADODB/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Lib/Data/DB/ADODB/license.txt -------------------------------------------------------------------------------- /app/src/Lib/Data/DB/ADODB/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Lib/Data/DB/ADODB/readme.txt -------------------------------------------------------------------------------- /app/src/Lib/Data/DB/ADODB/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Lib/Data/DB/ADODB/server.php -------------------------------------------------------------------------------- /app/src/Lib/Data/DB/ADODB/tests/pdo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Lib/Data/DB/ADODB/tests/pdo.php -------------------------------------------------------------------------------- /app/src/Lib/Data/DB/ADODB/tests/rr.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Lib/Data/DB/ADODB/tests/rr.htm -------------------------------------------------------------------------------- /app/src/Lib/Data/DB/ADODB/tests/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Lib/Data/DB/ADODB/tests/test.php -------------------------------------------------------------------------------- /app/src/Lib/Data/DB/ADODB/tests/time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Lib/Data/DB/ADODB/tests/time.php -------------------------------------------------------------------------------- /app/src/Lib/Data/DB/ADODB/tohtml.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Lib/Data/DB/ADODB/tohtml.inc.php -------------------------------------------------------------------------------- /app/src/Lib/Data/DB/ADODB/xmlschema.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Lib/Data/DB/ADODB/xmlschema.dtd -------------------------------------------------------------------------------- /app/src/Lib/Data/DB/adodb_lite/tests/pj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Lib/Data/DB/adodb_lite/tests/pj -------------------------------------------------------------------------------- /app/src/Lib/Data/XML/RSS/class.RSS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Lib/Data/XML/RSS/class.RSS.php -------------------------------------------------------------------------------- /app/src/Lib/Graphics/JPGraph/flags.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Lib/Graphics/JPGraph/flags.dat -------------------------------------------------------------------------------- /app/src/Lib/Graphics/JPGraph/jpgraph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Lib/Graphics/JPGraph/jpgraph.php -------------------------------------------------------------------------------- /app/src/Lib/Media/Audio/getid3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Lib/Media/Audio/getid3.php -------------------------------------------------------------------------------- /app/src/Lib/Media/Audio/write.apetag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Lib/Media/Audio/write.apetag.php -------------------------------------------------------------------------------- /app/src/Lib/Media/Audio/write.flac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Lib/Media/Audio/write.flac.php -------------------------------------------------------------------------------- /app/src/Lib/Media/Audio/write.id3v1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Lib/Media/Audio/write.id3v1.php -------------------------------------------------------------------------------- /app/src/Lib/Media/Audio/write.id3v2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Lib/Media/Audio/write.id3v2.php -------------------------------------------------------------------------------- /app/src/Lib/Media/Audio/write.vorbis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Lib/Media/Audio/write.vorbis.php -------------------------------------------------------------------------------- /app/src/Lib/NET/API/MaxMind/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Lib/NET/API/MaxMind/ChangeLog -------------------------------------------------------------------------------- /app/src/Lib/NET/API/MaxMind/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Lib/NET/API/MaxMind/README -------------------------------------------------------------------------------- /app/src/Lib/NET/API/MaxMind/geoip.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Lib/NET/API/MaxMind/geoip.inc -------------------------------------------------------------------------------- /app/src/Lib/NET/API/MaxMind/sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Lib/NET/API/MaxMind/sample.php -------------------------------------------------------------------------------- /app/src/Lib/UI/Smarty/Smarty.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Lib/UI/Smarty/Smarty.class.php -------------------------------------------------------------------------------- /app/src/Lib/UI/Smarty/debug.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/Lib/UI/Smarty/debug.tpl -------------------------------------------------------------------------------- /app/src/LibWebta/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/LibWebta/.project -------------------------------------------------------------------------------- /app/src/LibWebta/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/LibWebta/TODO.txt -------------------------------------------------------------------------------- /app/src/LibWebta/append.inc.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/LibWebta/class.Skeleton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/LibWebta/class.Skeleton.php -------------------------------------------------------------------------------- /app/src/LibWebta/common.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/LibWebta/common.inc.php -------------------------------------------------------------------------------- /app/src/LibWebta/docs/documentation.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/LibWebta/docs/documentation.chm -------------------------------------------------------------------------------- /app/src/LibWebta/docs/phpdoc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/LibWebta/docs/phpdoc.conf -------------------------------------------------------------------------------- /app/src/LibWebta/library/Graphics/ImageMagick/TODO.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/LibWebta/library/IO/Basic/magic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/LibWebta/library/IO/Basic/magic -------------------------------------------------------------------------------- /app/src/LibWebta/library/Math/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/LibWebta/library/Math/tests.php -------------------------------------------------------------------------------- /app/src/LibWebta/library/NET/DNS/TODO.txt: -------------------------------------------------------------------------------- 1 | -- Finish migration to a new object-based DNS model -------------------------------------------------------------------------------- /app/src/LibWebta/library/NET/SNMP/TODO.txt: -------------------------------------------------------------------------------- 1 | -- Handle timeouts, add try-catch for that -------------------------------------------------------------------------------- /app/src/LibWebta/library/PE/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/LibWebta/library/PE/TODO.txt -------------------------------------------------------------------------------- /app/src/LibWebta/library/PE/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/LibWebta/library/PE/tests.php -------------------------------------------------------------------------------- /app/src/LibWebta/library/System/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/LibWebta/library/System/TODO.txt -------------------------------------------------------------------------------- /app/src/LibWebta/library/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/LibWebta/library/TODO.txt -------------------------------------------------------------------------------- /app/src/LibWebta/library/class.Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/LibWebta/library/class.Core.php -------------------------------------------------------------------------------- /app/src/LibWebta/library/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/LibWebta/library/tests.php -------------------------------------------------------------------------------- /app/src/LibWebta/prepend.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/LibWebta/prepend.inc.php -------------------------------------------------------------------------------- /app/src/LibWebta/tests/prepend.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/LibWebta/tests/prepend.inc.php -------------------------------------------------------------------------------- /app/src/LibWebta/tests/simpletest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/LibWebta/tests/simpletest/README -------------------------------------------------------------------------------- /app/src/LibWebta/tests/simpletest/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.1beta2 -------------------------------------------------------------------------------- /app/src/LibWebta/tests/simpletest/test/support/collector/collectable.1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/LibWebta/tests/simpletest/test/support/collector/collectable.2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/LibWebta/tests/simpletest/test/support/supplementary_upload_sample.txt: -------------------------------------------------------------------------------- 1 | Some more text content -------------------------------------------------------------------------------- /app/src/LibWebta/tests/simpletest/test/support/upload_sample.txt: -------------------------------------------------------------------------------- 1 | Sample for testing file upload -------------------------------------------------------------------------------- /app/src/LibWebta/tests/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/LibWebta/tests/tests.php -------------------------------------------------------------------------------- /app/src/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/autoload.php -------------------------------------------------------------------------------- /app/src/class.Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/class.Application.php -------------------------------------------------------------------------------- /app/src/class.Balance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/class.Balance.php -------------------------------------------------------------------------------- /app/src/class.Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/class.Client.php -------------------------------------------------------------------------------- /app/src/class.DBBalance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/class.DBBalance.php -------------------------------------------------------------------------------- /app/src/class.DataForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/class.DataForm.php -------------------------------------------------------------------------------- /app/src/class.DataFormField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/class.DataFormField.php -------------------------------------------------------------------------------- /app/src/class.Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/class.Debug.php -------------------------------------------------------------------------------- /app/src/class.DomainAllContactsForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/class.DomainAllContactsForm.php -------------------------------------------------------------------------------- /app/src/class.FQDN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/class.FQDN.php -------------------------------------------------------------------------------- /app/src/class.Invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/class.Invoice.php -------------------------------------------------------------------------------- /app/src/class.License.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/class.License.php -------------------------------------------------------------------------------- /app/src/class.Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/class.Order.php -------------------------------------------------------------------------------- /app/src/class.PHPParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/class.PHPParser.php -------------------------------------------------------------------------------- /app/src/class.Phone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/class.Phone.php -------------------------------------------------------------------------------- /app/src/class.Punycode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/class.Punycode.php -------------------------------------------------------------------------------- /app/src/class.RegisterDomainAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/class.RegisterDomainAction.php -------------------------------------------------------------------------------- /app/src/class.String.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/class.String.php -------------------------------------------------------------------------------- /app/src/class.TaskQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/class.TaskQueue.php -------------------------------------------------------------------------------- /app/src/class.UI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/class.UI.php -------------------------------------------------------------------------------- /app/src/common.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/common.inc.php -------------------------------------------------------------------------------- /app/src/exceptions/class.ErrorList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/exceptions/class.ErrorList.php -------------------------------------------------------------------------------- /app/src/interface.IConfigurable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/interface.IConfigurable.php -------------------------------------------------------------------------------- /app/src/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/lang.php -------------------------------------------------------------------------------- /app/src/licserver-common/RestClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/licserver-common/RestClient.php -------------------------------------------------------------------------------- /app/src/licserver-common/ZendLicense.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/licserver-common/ZendLicense.php -------------------------------------------------------------------------------- /app/src/prepend.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/prepend.inc.php -------------------------------------------------------------------------------- /app/src/structs/struct.CONFIG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/structs/struct.CONFIG.php -------------------------------------------------------------------------------- /app/src/structs/struct.CONTEXTS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/structs/struct.CONTEXTS.php -------------------------------------------------------------------------------- /app/src/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/tests.php -------------------------------------------------------------------------------- /app/src/types/class.EnumFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/types/class.EnumFactory.php -------------------------------------------------------------------------------- /app/src/types/enum.APPCONTEXT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/types/enum.APPCONTEXT.php -------------------------------------------------------------------------------- /app/src/types/enum.CONTACT_TYPE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/types/enum.CONTACT_TYPE.php -------------------------------------------------------------------------------- /app/src/types/enum.DOMAIN_STATUS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/types/enum.DOMAIN_STATUS.php -------------------------------------------------------------------------------- /app/src/types/enum.FORM_FIELD_TYPE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/types/enum.FORM_FIELD_TYPE.php -------------------------------------------------------------------------------- /app/src/types/enum.INVOICE_STATUS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/types/enum.INVOICE_STATUS.php -------------------------------------------------------------------------------- /app/src/types/enum.LICENSE_FLAGS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/types/enum.LICENSE_FLAGS.php -------------------------------------------------------------------------------- /app/src/types/enum.PAYMENT_STATUS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/types/enum.PAYMENT_STATUS.php -------------------------------------------------------------------------------- /app/src/types/enum.SECURITY_CONTEXT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/types/enum.SECURITY_CONTEXT.php -------------------------------------------------------------------------------- /app/src/types/enum.TRANSFER_STATUS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/src/types/enum.TRANSFER_STATUS.php -------------------------------------------------------------------------------- /app/templates/DNS/zone.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/DNS/zone.tpl -------------------------------------------------------------------------------- /app/templates/admin/api_logs_view.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/api_logs_view.tpl -------------------------------------------------------------------------------- /app/templates/admin/balance_history.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/balance_history.tpl -------------------------------------------------------------------------------- /app/templates/admin/bulk_renew_step1.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/bulk_renew_step1.tpl -------------------------------------------------------------------------------- /app/templates/admin/contact_full.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/contact_full.tpl -------------------------------------------------------------------------------- /app/templates/admin/contacts_view.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/contacts_view.tpl -------------------------------------------------------------------------------- /app/templates/admin/countries.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/countries.tpl -------------------------------------------------------------------------------- /app/templates/admin/dnsdef_manage.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/dnsdef_manage.tpl -------------------------------------------------------------------------------- /app/templates/admin/domain_details.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/domain_details.tpl -------------------------------------------------------------------------------- /app/templates/admin/domains_export.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/domains_export.tpl -------------------------------------------------------------------------------- /app/templates/admin/domains_import.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/domains_import.tpl -------------------------------------------------------------------------------- /app/templates/admin/domains_view.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/domains_view.tpl -------------------------------------------------------------------------------- /app/templates/admin/exception.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/exception.tpl -------------------------------------------------------------------------------- /app/templates/admin/extensions.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/extensions.tpl -------------------------------------------------------------------------------- /app/templates/admin/fields_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/fields_add.tpl -------------------------------------------------------------------------------- /app/templates/admin/fields_view.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/fields_view.tpl -------------------------------------------------------------------------------- /app/templates/admin/history.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/history.tpl -------------------------------------------------------------------------------- /app/templates/admin/history_details.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/history_details.tpl -------------------------------------------------------------------------------- /app/templates/admin/inc/footer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/inc/footer.tpl -------------------------------------------------------------------------------- /app/templates/admin/inc/header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/inc/header.tpl -------------------------------------------------------------------------------- /app/templates/admin/inc/login_footer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/inc/login_footer.tpl -------------------------------------------------------------------------------- /app/templates/admin/inc/login_header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/inc/login_header.tpl -------------------------------------------------------------------------------- /app/templates/admin/inc/paging.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/inc/paging.tpl -------------------------------------------------------------------------------- /app/templates/admin/inc/table_filter.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/inc/table_filter.tpl -------------------------------------------------------------------------------- /app/templates/admin/inc/table_footer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/inc/table_footer.tpl -------------------------------------------------------------------------------- /app/templates/admin/inc/table_header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/inc/table_header.tpl -------------------------------------------------------------------------------- /app/templates/admin/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/index.tpl -------------------------------------------------------------------------------- /app/templates/admin/inv_create.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/inv_create.tpl -------------------------------------------------------------------------------- /app/templates/admin/inv_details.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/inv_details.tpl -------------------------------------------------------------------------------- /app/templates/admin/inv_view.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/inv_view.tpl -------------------------------------------------------------------------------- /app/templates/admin/ipurposes_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/ipurposes_add.tpl -------------------------------------------------------------------------------- /app/templates/admin/ipurposes_view.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/ipurposes_view.tpl -------------------------------------------------------------------------------- /app/templates/admin/langs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/langs.tpl -------------------------------------------------------------------------------- /app/templates/admin/login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/login.tpl -------------------------------------------------------------------------------- /app/templates/admin/logs_view.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/logs_view.tpl -------------------------------------------------------------------------------- /app/templates/admin/module_certtest.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/module_certtest.tpl -------------------------------------------------------------------------------- /app/templates/admin/module_config.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/module_config.tpl -------------------------------------------------------------------------------- /app/templates/admin/modules_view.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/modules_view.tpl -------------------------------------------------------------------------------- /app/templates/admin/ns_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/ns_add.tpl -------------------------------------------------------------------------------- /app/templates/admin/ns_view.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/ns_view.tpl -------------------------------------------------------------------------------- /app/templates/admin/packages_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/packages_add.tpl -------------------------------------------------------------------------------- /app/templates/admin/packages_view.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/packages_view.tpl -------------------------------------------------------------------------------- /app/templates/admin/pmodule_config.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/pmodule_config.tpl -------------------------------------------------------------------------------- /app/templates/admin/pmodules_view.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/pmodules_view.tpl -------------------------------------------------------------------------------- /app/templates/admin/product_info.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/product_info.tpl -------------------------------------------------------------------------------- /app/templates/admin/send_report.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/send_report.tpl -------------------------------------------------------------------------------- /app/templates/admin/settings_api.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/settings_api.tpl -------------------------------------------------------------------------------- /app/templates/admin/settings_core.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/settings_core.tpl -------------------------------------------------------------------------------- /app/templates/admin/tld_price.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/tld_price.tpl -------------------------------------------------------------------------------- /app/templates/admin/tld_view.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/tld_view.tpl -------------------------------------------------------------------------------- /app/templates/admin/transfer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/transfer.tpl -------------------------------------------------------------------------------- /app/templates/admin/update_report.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/update_report.tpl -------------------------------------------------------------------------------- /app/templates/admin/updates.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/updates.tpl -------------------------------------------------------------------------------- /app/templates/admin/users_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/users_add.tpl -------------------------------------------------------------------------------- /app/templates/admin/users_edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/users_edit.tpl -------------------------------------------------------------------------------- /app/templates/admin/users_view.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/admin/users_view.tpl -------------------------------------------------------------------------------- /app/templates/cart_confirm.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/cart_confirm.tpl -------------------------------------------------------------------------------- /app/templates/check_user.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/check_user.tpl -------------------------------------------------------------------------------- /app/templates/client/balance_deposit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/balance_deposit.tpl -------------------------------------------------------------------------------- /app/templates/client/balance_history.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/balance_history.tpl -------------------------------------------------------------------------------- /app/templates/client/bulk_reg_step1.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/bulk_reg_step1.tpl -------------------------------------------------------------------------------- /app/templates/client/bulk_reg_step2.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/bulk_reg_step2.tpl -------------------------------------------------------------------------------- /app/templates/client/bulk_reg_step3.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/bulk_reg_step3.tpl -------------------------------------------------------------------------------- /app/templates/client/bulk_reg_step4.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/bulk_reg_step4.tpl -------------------------------------------------------------------------------- /app/templates/client/bulk_reg_step5.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/bulk_reg_step5.tpl -------------------------------------------------------------------------------- /app/templates/client/bulk_reg_step6.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/bulk_reg_step6.tpl -------------------------------------------------------------------------------- /app/templates/client/contacts.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/contacts.tpl -------------------------------------------------------------------------------- /app/templates/client/contacts_view.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/contacts_view.tpl -------------------------------------------------------------------------------- /app/templates/client/dnszone_edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/dnszone_edit.tpl -------------------------------------------------------------------------------- /app/templates/client/domain_whois.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/domain_whois.tpl -------------------------------------------------------------------------------- /app/templates/client/domains_export.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/domains_export.tpl -------------------------------------------------------------------------------- /app/templates/client/domains_view.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/domains_view.tpl -------------------------------------------------------------------------------- /app/templates/client/email.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/email.tpl -------------------------------------------------------------------------------- /app/templates/client/exception.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/exception.tpl -------------------------------------------------------------------------------- /app/templates/client/inc/bulk_step1.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/inc/bulk_step1.tpl -------------------------------------------------------------------------------- /app/templates/client/inc/footer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/inc/footer.tpl -------------------------------------------------------------------------------- /app/templates/client/inc/header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/inc/header.tpl -------------------------------------------------------------------------------- /app/templates/client/inc/paging.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/inc/paging.tpl -------------------------------------------------------------------------------- /app/templates/client/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/index.tpl -------------------------------------------------------------------------------- /app/templates/client/inv_view.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/inv_view.tpl -------------------------------------------------------------------------------- /app/templates/client/invoice_print.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/invoice_print.tpl -------------------------------------------------------------------------------- /app/templates/client/login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/login.tpl -------------------------------------------------------------------------------- /app/templates/client/make_payment.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/make_payment.tpl -------------------------------------------------------------------------------- /app/templates/client/manage_contact.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/manage_contact.tpl -------------------------------------------------------------------------------- /app/templates/client/manage_flags.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/manage_flags.tpl -------------------------------------------------------------------------------- /app/templates/client/nhosts_view.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/nhosts_view.tpl -------------------------------------------------------------------------------- /app/templates/client/ns.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/ns.tpl -------------------------------------------------------------------------------- /app/templates/client/order_info.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/order_info.tpl -------------------------------------------------------------------------------- /app/templates/client/password_cp.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/password_cp.tpl -------------------------------------------------------------------------------- /app/templates/client/paymentdata.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/paymentdata.tpl -------------------------------------------------------------------------------- /app/templates/client/profile_edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/profile_edit.tpl -------------------------------------------------------------------------------- /app/templates/client/renew.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/renew.tpl -------------------------------------------------------------------------------- /app/templates/client/settings_api.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/settings_api.tpl -------------------------------------------------------------------------------- /app/templates/client/settings_core.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/settings_core.tpl -------------------------------------------------------------------------------- /app/templates/client/sync.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/sync.tpl -------------------------------------------------------------------------------- /app/templates/client/update_status.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/client/update_status.tpl -------------------------------------------------------------------------------- /app/templates/demo.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/demo.tpl -------------------------------------------------------------------------------- /app/templates/exception.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/exception.tpl -------------------------------------------------------------------------------- /app/templates/exception_cp.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/exception_cp.tpl -------------------------------------------------------------------------------- /app/templates/inc/checklist.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/inc/checklist.tpl -------------------------------------------------------------------------------- /app/templates/inc/date_picker.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/inc/date_picker.tpl -------------------------------------------------------------------------------- /app/templates/inc/domain_status.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/inc/domain_status.tpl -------------------------------------------------------------------------------- /app/templates/inc/dynamicform.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/inc/dynamicform.tpl -------------------------------------------------------------------------------- /app/templates/inc/errors.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/inc/errors.tpl -------------------------------------------------------------------------------- /app/templates/inc/footer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/inc/footer.tpl -------------------------------------------------------------------------------- /app/templates/inc/header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/inc/header.tpl -------------------------------------------------------------------------------- /app/templates/inc/index_welcome.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/inc/index_welcome.tpl -------------------------------------------------------------------------------- /app/templates/inc/version.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/inc/version.tpl -------------------------------------------------------------------------------- /app/templates/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/index.tpl -------------------------------------------------------------------------------- /app/templates/installation_tip.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/installation_tip.tpl -------------------------------------------------------------------------------- /app/templates/licensingexception.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/licensingexception.tpl -------------------------------------------------------------------------------- /app/templates/newclient.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/newclient.tpl -------------------------------------------------------------------------------- /app/templates/order_complete.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/order_complete.tpl -------------------------------------------------------------------------------- /app/templates/payment_failed.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/payment_failed.tpl -------------------------------------------------------------------------------- /app/templates/payment_success_common.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/payment_success_common.tpl -------------------------------------------------------------------------------- /app/templates/payment_success_reg.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/payment_success_reg.tpl -------------------------------------------------------------------------------- /app/templates/paymentgate.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/paymentgate.tpl -------------------------------------------------------------------------------- /app/templates/placeorder.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/placeorder.tpl -------------------------------------------------------------------------------- /app/templates/terms.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/terms.tpl -------------------------------------------------------------------------------- /app/templates/version.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/templates/version.tpl -------------------------------------------------------------------------------- /app/www/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/.htaccess -------------------------------------------------------------------------------- /app/www/admin/ajax/api_logs_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/ajax/api_logs_view.php -------------------------------------------------------------------------------- /app/www/admin/ajax/contacts_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/ajax/contacts_view.php -------------------------------------------------------------------------------- /app/www/admin/ajax/domains_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/ajax/domains_view.php -------------------------------------------------------------------------------- /app/www/admin/ajax/inv_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/ajax/inv_view.php -------------------------------------------------------------------------------- /app/www/admin/ajax/logs_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/ajax/logs_view.php -------------------------------------------------------------------------------- /app/www/admin/ajax/users_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/ajax/users_list.php -------------------------------------------------------------------------------- /app/www/admin/ajax/users_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/ajax/users_view.php -------------------------------------------------------------------------------- /app/www/admin/api_logs_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/api_logs_view.php -------------------------------------------------------------------------------- /app/www/admin/balance_history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/balance_history.php -------------------------------------------------------------------------------- /app/www/admin/balance_operation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/balance_operation.php -------------------------------------------------------------------------------- /app/www/admin/bulk_renew.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/bulk_renew.php -------------------------------------------------------------------------------- /app/www/admin/contact_change_owner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/contact_change_owner.php -------------------------------------------------------------------------------- /app/www/admin/contact_full.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/contact_full.php -------------------------------------------------------------------------------- /app/www/admin/contacts_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/contacts_view.php -------------------------------------------------------------------------------- /app/www/admin/countries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/countries.php -------------------------------------------------------------------------------- /app/www/admin/css/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/css/calendar.css -------------------------------------------------------------------------------- /app/www/admin/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/css/login.css -------------------------------------------------------------------------------- /app/www/admin/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/css/main.css -------------------------------------------------------------------------------- /app/www/admin/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/css/style.css -------------------------------------------------------------------------------- /app/www/admin/currency_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/currency_settings.php -------------------------------------------------------------------------------- /app/www/admin/custom_event_handlers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/custom_event_handlers.php -------------------------------------------------------------------------------- /app/www/admin/dnsdef_manage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/dnsdef_manage.php -------------------------------------------------------------------------------- /app/www/admin/domain_details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/domain_details.php -------------------------------------------------------------------------------- /app/www/admin/domains_export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/domains_export.php -------------------------------------------------------------------------------- /app/www/admin/domains_import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/domains_import.php -------------------------------------------------------------------------------- /app/www/admin/domains_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/domains_view.php -------------------------------------------------------------------------------- /app/www/admin/extensions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/extensions.php -------------------------------------------------------------------------------- /app/www/admin/fields_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/fields_add.php -------------------------------------------------------------------------------- /app/www/admin/fields_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/fields_view.php -------------------------------------------------------------------------------- /app/www/admin/history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/history.php -------------------------------------------------------------------------------- /app/www/admin/history_details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/history_details.php -------------------------------------------------------------------------------- /app/www/admin/images/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/add.gif -------------------------------------------------------------------------------- /app/www/admin/images/admin-sep.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/admin-sep.gif -------------------------------------------------------------------------------- /app/www/admin/images/arr_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/arr_b.gif -------------------------------------------------------------------------------- /app/www/admin/images/arr_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/arr_down.gif -------------------------------------------------------------------------------- /app/www/admin/images/arr_down_dsb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/arr_down_dsb.gif -------------------------------------------------------------------------------- /app/www/admin/images/arr_t.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/arr_t.gif -------------------------------------------------------------------------------- /app/www/admin/images/arr_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/arr_up.gif -------------------------------------------------------------------------------- /app/www/admin/images/arr_up_dsb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/arr_up_dsb.gif -------------------------------------------------------------------------------- /app/www/admin/images/bl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/bl.gif -------------------------------------------------------------------------------- /app/www/admin/images/bl_gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/bl_gray.gif -------------------------------------------------------------------------------- /app/www/admin/images/br.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/br.gif -------------------------------------------------------------------------------- /app/www/admin/images/br_gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/br_gray.gif -------------------------------------------------------------------------------- /app/www/admin/images/button_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/button_empty.png -------------------------------------------------------------------------------- /app/www/admin/images/del.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/del.gif -------------------------------------------------------------------------------- /app/www/admin/images/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/delete.gif -------------------------------------------------------------------------------- /app/www/admin/images/delete_zone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/delete_zone.gif -------------------------------------------------------------------------------- /app/www/admin/images/exception1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/exception1.gif -------------------------------------------------------------------------------- /app/www/admin/images/excl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/excl.png -------------------------------------------------------------------------------- /app/www/admin/images/false.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/false.gif -------------------------------------------------------------------------------- /app/www/admin/images/false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/false.png -------------------------------------------------------------------------------- /app/www/admin/images/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/folder.gif -------------------------------------------------------------------------------- /app/www/admin/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/folder.png -------------------------------------------------------------------------------- /app/www/admin/images/grey-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/grey-bg.gif -------------------------------------------------------------------------------- /app/www/admin/images/help_close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/help_close.gif -------------------------------------------------------------------------------- /app/www/admin/images/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/html.png -------------------------------------------------------------------------------- /app/www/admin/images/icon_err.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/icon_err.gif -------------------------------------------------------------------------------- /app/www/admin/images/icon_err.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/icon_err.png -------------------------------------------------------------------------------- /app/www/admin/images/icon_ihelp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/icon_ihelp.gif -------------------------------------------------------------------------------- /app/www/admin/images/icon_offline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/icon_offline.gif -------------------------------------------------------------------------------- /app/www/admin/images/icon_ok.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/icon_ok.gif -------------------------------------------------------------------------------- /app/www/admin/images/icon_online.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/icon_online.gif -------------------------------------------------------------------------------- /app/www/admin/images/icon_shelp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/icon_shelp.gif -------------------------------------------------------------------------------- /app/www/admin/images/icon_warn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/icon_warn.gif -------------------------------------------------------------------------------- /app/www/admin/images/icon_warn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/icon_warn.png -------------------------------------------------------------------------------- /app/www/admin/images/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/key.png -------------------------------------------------------------------------------- /app/www/admin/images/layout_tpl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/layout_tpl.gif -------------------------------------------------------------------------------- /app/www/admin/images/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/left.gif -------------------------------------------------------------------------------- /app/www/admin/images/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/left.png -------------------------------------------------------------------------------- /app/www/admin/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/loading.gif -------------------------------------------------------------------------------- /app/www/admin/images/lock_16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/lock_16.gif -------------------------------------------------------------------------------- /app/www/admin/images/lock_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/lock_16.png -------------------------------------------------------------------------------- /app/www/admin/images/log_icons/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/log_icons/debug.png -------------------------------------------------------------------------------- /app/www/admin/images/log_icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/log_icons/error.png -------------------------------------------------------------------------------- /app/www/admin/images/log_icons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/log_icons/info.png -------------------------------------------------------------------------------- /app/www/admin/images/loginbox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/loginbox.gif -------------------------------------------------------------------------------- /app/www/admin/images/logo_footer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/logo_footer.gif -------------------------------------------------------------------------------- /app/www/admin/images/logo_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/logo_footer.png -------------------------------------------------------------------------------- /app/www/admin/images/logo_header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/logo_header.gif -------------------------------------------------------------------------------- /app/www/admin/images/logo_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/logo_header.png -------------------------------------------------------------------------------- /app/www/admin/images/mail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/mail.gif -------------------------------------------------------------------------------- /app/www/admin/images/mail_tpl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/mail_tpl.gif -------------------------------------------------------------------------------- /app/www/admin/images/menu-radio-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/menu-radio-off.png -------------------------------------------------------------------------------- /app/www/admin/images/menu-radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/menu-radio.png -------------------------------------------------------------------------------- /app/www/admin/images/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/minus.gif -------------------------------------------------------------------------------- /app/www/admin/images/newtask.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/newtask.gif -------------------------------------------------------------------------------- /app/www/admin/images/password.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/password.gif -------------------------------------------------------------------------------- /app/www/admin/images/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/plus.gif -------------------------------------------------------------------------------- /app/www/admin/images/printer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/printer.gif -------------------------------------------------------------------------------- /app/www/admin/images/rank_0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/rank_0.gif -------------------------------------------------------------------------------- /app/www/admin/images/rank_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/rank_1.gif -------------------------------------------------------------------------------- /app/www/admin/images/rank_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/rank_2.gif -------------------------------------------------------------------------------- /app/www/admin/images/rank_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/rank_3.gif -------------------------------------------------------------------------------- /app/www/admin/images/rank_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/rank_4.gif -------------------------------------------------------------------------------- /app/www/admin/images/rank_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/rank_5.gif -------------------------------------------------------------------------------- /app/www/admin/images/rarrow-hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/rarrow-hover.gif -------------------------------------------------------------------------------- /app/www/admin/images/rarrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/rarrow.gif -------------------------------------------------------------------------------- /app/www/admin/images/refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/refresh.gif -------------------------------------------------------------------------------- /app/www/admin/images/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/right.gif -------------------------------------------------------------------------------- /app/www/admin/images/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/right.png -------------------------------------------------------------------------------- /app/www/admin/images/sm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/sm.gif -------------------------------------------------------------------------------- /app/www/admin/images/snake-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/snake-loader.gif -------------------------------------------------------------------------------- /app/www/admin/images/sorta.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/sorta.gif -------------------------------------------------------------------------------- /app/www/admin/images/sortd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/sortd.gif -------------------------------------------------------------------------------- /app/www/admin/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/spacer.gif -------------------------------------------------------------------------------- /app/www/admin/images/spf-icon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/spf-icon-16x16.png -------------------------------------------------------------------------------- /app/www/admin/images/suspended_false.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/suspended_false.gif -------------------------------------------------------------------------------- /app/www/admin/images/suspended_true.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/suspended_true.gif -------------------------------------------------------------------------------- /app/www/admin/images/tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/tab.gif -------------------------------------------------------------------------------- /app/www/admin/images/tabPage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/tabPage.gif -------------------------------------------------------------------------------- /app/www/admin/images/tabPage_a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/tabPage_a.gif -------------------------------------------------------------------------------- /app/www/admin/images/tab_a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/tab_a.gif -------------------------------------------------------------------------------- /app/www/admin/images/tl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/tl.gif -------------------------------------------------------------------------------- /app/www/admin/images/tl_gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/tl_gray.gif -------------------------------------------------------------------------------- /app/www/admin/images/tl_lightgray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/tl_lightgray.gif -------------------------------------------------------------------------------- /app/www/admin/images/tr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/tr.gif -------------------------------------------------------------------------------- /app/www/admin/images/tr_gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/tr_gray.gif -------------------------------------------------------------------------------- /app/www/admin/images/tr_lightgray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/tr_lightgray.gif -------------------------------------------------------------------------------- /app/www/admin/images/true.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/true.gif -------------------------------------------------------------------------------- /app/www/admin/images/true_black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/true_black.gif -------------------------------------------------------------------------------- /app/www/admin/images/waiting_an.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/waiting_an.gif -------------------------------------------------------------------------------- /app/www/admin/images/webtalogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/webtalogo.gif -------------------------------------------------------------------------------- /app/www/admin/images/webtalogo_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/webtalogo_top.gif -------------------------------------------------------------------------------- /app/www/admin/images/wiz-complete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/wiz-complete.gif -------------------------------------------------------------------------------- /app/www/admin/images/wiz-incomplete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/wiz-incomplete.gif -------------------------------------------------------------------------------- /app/www/admin/images/wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/wrench.png -------------------------------------------------------------------------------- /app/www/admin/images/xcomma.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/images/xcomma.gif -------------------------------------------------------------------------------- /app/www/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/index.php -------------------------------------------------------------------------------- /app/www/admin/inv_create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/inv_create.php -------------------------------------------------------------------------------- /app/www/admin/inv_details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/inv_details.php -------------------------------------------------------------------------------- /app/www/admin/inv_print.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/inv_print.php -------------------------------------------------------------------------------- /app/www/admin/inv_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/inv_view.php -------------------------------------------------------------------------------- /app/www/admin/ipurposes_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/ipurposes_add.php -------------------------------------------------------------------------------- /app/www/admin/ipurposes_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/ipurposes_view.php -------------------------------------------------------------------------------- /app/www/admin/langs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/langs.php -------------------------------------------------------------------------------- /app/www/admin/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/login.php -------------------------------------------------------------------------------- /app/www/admin/logs_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/logs_view.php -------------------------------------------------------------------------------- /app/www/admin/manage_tld_conflicts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/manage_tld_conflicts.php -------------------------------------------------------------------------------- /app/www/admin/module_certtest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/module_certtest.php -------------------------------------------------------------------------------- /app/www/admin/module_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/module_config.php -------------------------------------------------------------------------------- /app/www/admin/modules_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/modules_view.php -------------------------------------------------------------------------------- /app/www/admin/ns_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/ns_add.php -------------------------------------------------------------------------------- /app/www/admin/ns_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/ns_view.php -------------------------------------------------------------------------------- /app/www/admin/packages_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/packages_add.php -------------------------------------------------------------------------------- /app/www/admin/packages_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/packages_view.php -------------------------------------------------------------------------------- /app/www/admin/pmodule_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/pmodule_config.php -------------------------------------------------------------------------------- /app/www/admin/pmodules_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/pmodules_view.php -------------------------------------------------------------------------------- /app/www/admin/product_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/product_info.php -------------------------------------------------------------------------------- /app/www/admin/server/misc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/server/misc.php -------------------------------------------------------------------------------- /app/www/admin/server/tmanager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/server/tmanager.php -------------------------------------------------------------------------------- /app/www/admin/settings_api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/settings_api.php -------------------------------------------------------------------------------- /app/www/admin/settings_core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/settings_core.php -------------------------------------------------------------------------------- /app/www/admin/src/append.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/src/append.inc.php -------------------------------------------------------------------------------- /app/www/admin/src/navigation.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/src/navigation.inc.php -------------------------------------------------------------------------------- /app/www/admin/src/prepend.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/src/prepend.inc.php -------------------------------------------------------------------------------- /app/www/admin/templates_manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/templates_manager.php -------------------------------------------------------------------------------- /app/www/admin/tld_price.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/tld_price.php -------------------------------------------------------------------------------- /app/www/admin/tld_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/tld_view.php -------------------------------------------------------------------------------- /app/www/admin/transfer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/transfer.php -------------------------------------------------------------------------------- /app/www/admin/users_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/users_add.php -------------------------------------------------------------------------------- /app/www/admin/users_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/users_edit.php -------------------------------------------------------------------------------- /app/www/admin/users_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/users_view.php -------------------------------------------------------------------------------- /app/www/admin/xmlserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/admin/xmlserver.php -------------------------------------------------------------------------------- /app/www/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/api.php -------------------------------------------------------------------------------- /app/www/client/ajax/balance_history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/ajax/balance_history.php -------------------------------------------------------------------------------- /app/www/client/ajax/contacts_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/ajax/contacts_view.php -------------------------------------------------------------------------------- /app/www/client/ajax/domains_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/ajax/domains_view.php -------------------------------------------------------------------------------- /app/www/client/ajax/inv_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/ajax/inv_view.php -------------------------------------------------------------------------------- /app/www/client/balance_deposit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/balance_deposit.php -------------------------------------------------------------------------------- /app/www/client/balance_history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/balance_history.php -------------------------------------------------------------------------------- /app/www/client/bulk_preregistration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/bulk_preregistration.php -------------------------------------------------------------------------------- /app/www/client/bulk_reg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/bulk_reg.php -------------------------------------------------------------------------------- /app/www/client/bulk_renew.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/bulk_renew.php -------------------------------------------------------------------------------- /app/www/client/bulk_transfer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/bulk_transfer.php -------------------------------------------------------------------------------- /app/www/client/bulk_update_complete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/bulk_update_complete.php -------------------------------------------------------------------------------- /app/www/client/bulk_update_contacts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/bulk_update_contacts.php -------------------------------------------------------------------------------- /app/www/client/bulk_update_ns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/bulk_update_ns.php -------------------------------------------------------------------------------- /app/www/client/change_contact_policy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/change_contact_policy.php -------------------------------------------------------------------------------- /app/www/client/checkout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/checkout.php -------------------------------------------------------------------------------- /app/www/client/complete_trade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/complete_trade.php -------------------------------------------------------------------------------- /app/www/client/complete_transfer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/complete_transfer.php -------------------------------------------------------------------------------- /app/www/client/contact_create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/contact_create.php -------------------------------------------------------------------------------- /app/www/client/contacts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/contacts.php -------------------------------------------------------------------------------- /app/www/client/contacts_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/contacts_view.php -------------------------------------------------------------------------------- /app/www/client/css/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/www/client/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/css/login.css -------------------------------------------------------------------------------- /app/www/client/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/css/main.css -------------------------------------------------------------------------------- /app/www/client/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/css/style.css -------------------------------------------------------------------------------- /app/www/client/dnszone_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/dnszone_edit.php -------------------------------------------------------------------------------- /app/www/client/domain_change.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/domain_change.php -------------------------------------------------------------------------------- /app/www/client/domain_change_pwd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/domain_change_pwd.php -------------------------------------------------------------------------------- /app/www/client/domain_oper_details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/domain_oper_details.php -------------------------------------------------------------------------------- /app/www/client/domain_reg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/domain_reg.php -------------------------------------------------------------------------------- /app/www/client/domain_reg_complete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/domain_reg_complete.php -------------------------------------------------------------------------------- /app/www/client/domain_whois.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/domain_whois.php -------------------------------------------------------------------------------- /app/www/client/domains_export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/domains_export.php -------------------------------------------------------------------------------- /app/www/client/domains_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/domains_view.php -------------------------------------------------------------------------------- /app/www/client/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/email.php -------------------------------------------------------------------------------- /app/www/client/images/8-em-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/8-em-check.png -------------------------------------------------------------------------------- /app/www/client/images/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/add.gif -------------------------------------------------------------------------------- /app/www/client/images/admin-sep.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/admin-sep.gif -------------------------------------------------------------------------------- /app/www/client/images/arr_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/arr_b.gif -------------------------------------------------------------------------------- /app/www/client/images/arr_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/arr_down.gif -------------------------------------------------------------------------------- /app/www/client/images/arr_down_dsb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/arr_down_dsb.gif -------------------------------------------------------------------------------- /app/www/client/images/arr_t.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/arr_t.gif -------------------------------------------------------------------------------- /app/www/client/images/arr_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/arr_up.gif -------------------------------------------------------------------------------- /app/www/client/images/arr_up_dsb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/arr_up_dsb.gif -------------------------------------------------------------------------------- /app/www/client/images/bl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/bl.gif -------------------------------------------------------------------------------- /app/www/client/images/bl_gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/bl_gray.gif -------------------------------------------------------------------------------- /app/www/client/images/br.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/br.gif -------------------------------------------------------------------------------- /app/www/client/images/br_gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/br_gray.gif -------------------------------------------------------------------------------- /app/www/client/images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/bullet.png -------------------------------------------------------------------------------- /app/www/client/images/button_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/button_empty.png -------------------------------------------------------------------------------- /app/www/client/images/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/contact.png -------------------------------------------------------------------------------- /app/www/client/images/contactb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/contactb.png -------------------------------------------------------------------------------- /app/www/client/images/del.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/del.gif -------------------------------------------------------------------------------- /app/www/client/images/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/delete.gif -------------------------------------------------------------------------------- /app/www/client/images/delete_zone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/delete_zone.gif -------------------------------------------------------------------------------- /app/www/client/images/deleteb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/deleteb.png -------------------------------------------------------------------------------- /app/www/client/images/details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/details.png -------------------------------------------------------------------------------- /app/www/client/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/edit.png -------------------------------------------------------------------------------- /app/www/client/images/exception1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/exception1.gif -------------------------------------------------------------------------------- /app/www/client/images/false.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/false.gif -------------------------------------------------------------------------------- /app/www/client/images/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/folder.gif -------------------------------------------------------------------------------- /app/www/client/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/folder.png -------------------------------------------------------------------------------- /app/www/client/images/grey-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/grey-bg.gif -------------------------------------------------------------------------------- /app/www/client/images/help_close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/help_close.gif -------------------------------------------------------------------------------- /app/www/client/images/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/html.png -------------------------------------------------------------------------------- /app/www/client/images/icon_err.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/icon_err.gif -------------------------------------------------------------------------------- /app/www/client/images/icon_err.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/icon_err.png -------------------------------------------------------------------------------- /app/www/client/images/icon_ihelp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/icon_ihelp.gif -------------------------------------------------------------------------------- /app/www/client/images/icon_ihelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/icon_ihelp.png -------------------------------------------------------------------------------- /app/www/client/images/icon_offline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/icon_offline.gif -------------------------------------------------------------------------------- /app/www/client/images/icon_ok.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/icon_ok.gif -------------------------------------------------------------------------------- /app/www/client/images/icon_online.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/icon_online.gif -------------------------------------------------------------------------------- /app/www/client/images/icon_shelp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/icon_shelp.gif -------------------------------------------------------------------------------- /app/www/client/images/icon_warn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/icon_warn.gif -------------------------------------------------------------------------------- /app/www/client/images/icon_warn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/icon_warn.png -------------------------------------------------------------------------------- /app/www/client/images/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/www/client/images/layout_tpl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/layout_tpl.gif -------------------------------------------------------------------------------- /app/www/client/images/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/left.gif -------------------------------------------------------------------------------- /app/www/client/images/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/left.png -------------------------------------------------------------------------------- /app/www/client/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/loading.gif -------------------------------------------------------------------------------- /app/www/client/images/lock_16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/lock_16.gif -------------------------------------------------------------------------------- /app/www/client/images/lock_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/lock_16.png -------------------------------------------------------------------------------- /app/www/client/images/locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/locked.png -------------------------------------------------------------------------------- /app/www/client/images/loginbox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/loginbox.gif -------------------------------------------------------------------------------- /app/www/client/images/logo_footer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/logo_footer.gif -------------------------------------------------------------------------------- /app/www/client/images/logo_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/logo_footer.png -------------------------------------------------------------------------------- /app/www/client/images/logo_header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/logo_header.gif -------------------------------------------------------------------------------- /app/www/client/images/logo_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/logo_header.png -------------------------------------------------------------------------------- /app/www/client/images/mail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/mail.gif -------------------------------------------------------------------------------- /app/www/client/images/mail_tpl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/mail_tpl.gif -------------------------------------------------------------------------------- /app/www/client/images/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/minus.gif -------------------------------------------------------------------------------- /app/www/client/images/newtask.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/newtask.gif -------------------------------------------------------------------------------- /app/www/client/images/password.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/password.gif -------------------------------------------------------------------------------- /app/www/client/images/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/plus.gif -------------------------------------------------------------------------------- /app/www/client/images/printer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/printer.gif -------------------------------------------------------------------------------- /app/www/client/images/rank_0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/rank_0.gif -------------------------------------------------------------------------------- /app/www/client/images/rank_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/rank_1.gif -------------------------------------------------------------------------------- /app/www/client/images/rank_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/rank_2.gif -------------------------------------------------------------------------------- /app/www/client/images/rank_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/rank_3.gif -------------------------------------------------------------------------------- /app/www/client/images/rank_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/rank_4.gif -------------------------------------------------------------------------------- /app/www/client/images/rank_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/rank_5.gif -------------------------------------------------------------------------------- /app/www/client/images/refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/refresh.gif -------------------------------------------------------------------------------- /app/www/client/images/renew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/renew.png -------------------------------------------------------------------------------- /app/www/client/images/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/right.gif -------------------------------------------------------------------------------- /app/www/client/images/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/right.png -------------------------------------------------------------------------------- /app/www/client/images/sm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/sm.gif -------------------------------------------------------------------------------- /app/www/client/images/snake-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/snake-loader.gif -------------------------------------------------------------------------------- /app/www/client/images/sorta.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/sorta.gif -------------------------------------------------------------------------------- /app/www/client/images/sortd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/sortd.gif -------------------------------------------------------------------------------- /app/www/client/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/spacer.gif -------------------------------------------------------------------------------- /app/www/client/images/spf-icon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/spf-icon-16x16.png -------------------------------------------------------------------------------- /app/www/client/images/suspended_true.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/suspended_true.gif -------------------------------------------------------------------------------- /app/www/client/images/tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/tab.gif -------------------------------------------------------------------------------- /app/www/client/images/tabPage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/tabPage.gif -------------------------------------------------------------------------------- /app/www/client/images/tabPage_a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/tabPage_a.gif -------------------------------------------------------------------------------- /app/www/client/images/tab_a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/tab_a.gif -------------------------------------------------------------------------------- /app/www/client/images/tl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/tl.gif -------------------------------------------------------------------------------- /app/www/client/images/tl_gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/tl_gray.gif -------------------------------------------------------------------------------- /app/www/client/images/tl_lightgray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/tl_lightgray.gif -------------------------------------------------------------------------------- /app/www/client/images/tr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/tr.gif -------------------------------------------------------------------------------- /app/www/client/images/tr_gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/tr_gray.gif -------------------------------------------------------------------------------- /app/www/client/images/tr_lightgray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/tr_lightgray.gif -------------------------------------------------------------------------------- /app/www/client/images/true.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/true.gif -------------------------------------------------------------------------------- /app/www/client/images/true_black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/true_black.gif -------------------------------------------------------------------------------- /app/www/client/images/unlocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/unlocked.png -------------------------------------------------------------------------------- /app/www/client/images/waiting_an.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/waiting_an.gif -------------------------------------------------------------------------------- /app/www/client/images/wbull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/wbull.png -------------------------------------------------------------------------------- /app/www/client/images/webtalogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/webtalogo.gif -------------------------------------------------------------------------------- /app/www/client/images/webtalogo_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/webtalogo_top.gif -------------------------------------------------------------------------------- /app/www/client/images/wiz-complete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/wiz-complete.gif -------------------------------------------------------------------------------- /app/www/client/images/wiz-incomplete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/wiz-incomplete.gif -------------------------------------------------------------------------------- /app/www/client/images/wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/wrench.png -------------------------------------------------------------------------------- /app/www/client/images/wrenchb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/wrenchb.png -------------------------------------------------------------------------------- /app/www/client/images/xcomma.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/images/xcomma.gif -------------------------------------------------------------------------------- /app/www/client/incomplete_orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/incomplete_orders.php -------------------------------------------------------------------------------- /app/www/client/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/index.php -------------------------------------------------------------------------------- /app/www/client/inv_print.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/inv_print.php -------------------------------------------------------------------------------- /app/www/client/inv_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/inv_view.php -------------------------------------------------------------------------------- /app/www/client/invoice_print.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/invoice_print.php -------------------------------------------------------------------------------- /app/www/client/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/login.php -------------------------------------------------------------------------------- /app/www/client/manage_contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/manage_contact.php -------------------------------------------------------------------------------- /app/www/client/manage_flags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/manage_flags.php -------------------------------------------------------------------------------- /app/www/client/nhosts_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/nhosts_view.php -------------------------------------------------------------------------------- /app/www/client/ns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/ns.php -------------------------------------------------------------------------------- /app/www/client/offlinebank_complete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/offlinebank_complete.php -------------------------------------------------------------------------------- /app/www/client/order_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/order_info.php -------------------------------------------------------------------------------- /app/www/client/password_cp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/password_cp.php -------------------------------------------------------------------------------- /app/www/client/payment_complete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/payment_complete.php -------------------------------------------------------------------------------- /app/www/client/preregister_domain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/preregister_domain.php -------------------------------------------------------------------------------- /app/www/client/profile_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/profile_edit.php -------------------------------------------------------------------------------- /app/www/client/renew.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/renew.php -------------------------------------------------------------------------------- /app/www/client/server/check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/server/check.php -------------------------------------------------------------------------------- /app/www/client/server/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/www/client/server/misc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/server/misc.php -------------------------------------------------------------------------------- /app/www/client/settings_api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/settings_api.php -------------------------------------------------------------------------------- /app/www/client/settings_core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/settings_core.php -------------------------------------------------------------------------------- /app/www/client/src/append.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/src/append.inc.php -------------------------------------------------------------------------------- /app/www/client/src/navigation.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/src/navigation.inc.php -------------------------------------------------------------------------------- /app/www/client/src/prepend.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/src/prepend.inc.php -------------------------------------------------------------------------------- /app/www/client/sync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/sync.php -------------------------------------------------------------------------------- /app/www/client/update_status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/update_status.php -------------------------------------------------------------------------------- /app/www/client/xmlserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/client/xmlserver.php -------------------------------------------------------------------------------- /app/www/crossdomain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/crossdomain.xml -------------------------------------------------------------------------------- /app/www/css/SelectControl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/css/SelectControl.css -------------------------------------------------------------------------------- /app/www/css/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/css/calendar.css -------------------------------------------------------------------------------- /app/www/css/checklist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/css/checklist.css -------------------------------------------------------------------------------- /app/www/css/ext-all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/css/ext-all.css -------------------------------------------------------------------------------- /app/www/css/ext-ux.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/css/ext-ux.css -------------------------------------------------------------------------------- /app/www/css/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/www/css/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/css/popup.css -------------------------------------------------------------------------------- /app/www/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/css/style.css -------------------------------------------------------------------------------- /app/www/images/avail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/avail.gif -------------------------------------------------------------------------------- /app/www/images/bg-control.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/bg-control.gif -------------------------------------------------------------------------------- /app/www/images/control-pimp-hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/control-pimp-hover.gif -------------------------------------------------------------------------------- /app/www/images/control-pimp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/control-pimp.gif -------------------------------------------------------------------------------- /app/www/images/dot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/dot.gif -------------------------------------------------------------------------------- /app/www/images/dotted-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/dotted-line.gif -------------------------------------------------------------------------------- /app/www/images/extjs-default/box/l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/extjs-default/box/l.gif -------------------------------------------------------------------------------- /app/www/images/extjs-default/box/r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/extjs-default/box/r.gif -------------------------------------------------------------------------------- /app/www/images/extjs-default/box/tb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/extjs-default/box/tb.gif -------------------------------------------------------------------------------- /app/www/images/extjs-default/qtip/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/extjs-default/qtip/bg.gif -------------------------------------------------------------------------------- /app/www/images/extjs-default/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/extjs-default/s.gif -------------------------------------------------------------------------------- /app/www/images/extjs-default/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/extjs-default/shadow.png -------------------------------------------------------------------------------- /app/www/images/extjs-default/tree/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/extjs-default/tree/s.gif -------------------------------------------------------------------------------- /app/www/images/fail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/fail.gif -------------------------------------------------------------------------------- /app/www/images/fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/fail.png -------------------------------------------------------------------------------- /app/www/images/ico-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/ico-add.png -------------------------------------------------------------------------------- /app/www/images/ico-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/ico-key.png -------------------------------------------------------------------------------- /app/www/images/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/www/images/lang/el_GR.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/lang/el_GR.gif -------------------------------------------------------------------------------- /app/www/images/lang/en_US.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/lang/en_US.gif -------------------------------------------------------------------------------- /app/www/images/lang/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/www/images/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/load.gif -------------------------------------------------------------------------------- /app/www/images/menu-radio-off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/menu-radio-off.gif -------------------------------------------------------------------------------- /app/www/images/menu-radio.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/menu-radio.gif -------------------------------------------------------------------------------- /app/www/images/modules/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/modules/.htaccess -------------------------------------------------------------------------------- /app/www/images/modules/EZBill_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/modules/EZBill_icon.gif -------------------------------------------------------------------------------- /app/www/images/modules/EZBill_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/modules/EZBill_icon.png -------------------------------------------------------------------------------- /app/www/images/modules/PayPal_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/modules/PayPal_icon.gif -------------------------------------------------------------------------------- /app/www/images/modules/PayPal_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/modules/PayPal_icon.png -------------------------------------------------------------------------------- /app/www/images/modules/SetCom_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/modules/SetCom_icon.gif -------------------------------------------------------------------------------- /app/www/images/modules/SetCom_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/modules/SetCom_icon.png -------------------------------------------------------------------------------- /app/www/images/modules/UnionPay_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/modules/UnionPay_icon.gif -------------------------------------------------------------------------------- /app/www/images/modules/UnionPay_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/modules/UnionPay_icon.png -------------------------------------------------------------------------------- /app/www/images/modules/WebMoney_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/modules/WebMoney_icon.gif -------------------------------------------------------------------------------- /app/www/images/modules/WebMoney_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/modules/WebMoney_icon.png -------------------------------------------------------------------------------- /app/www/images/modules/balance_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/modules/balance_icon.png -------------------------------------------------------------------------------- /app/www/images/modules/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/www/images/modules/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/modules/template.png -------------------------------------------------------------------------------- /app/www/images/modules/visa_logo_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/modules/visa_logo_2.gif -------------------------------------------------------------------------------- /app/www/images/modules/visa_logo_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/modules/visa_logo_3.gif -------------------------------------------------------------------------------- /app/www/images/order_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/order_arrow.gif -------------------------------------------------------------------------------- /app/www/images/payment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/payment.gif -------------------------------------------------------------------------------- /app/www/images/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/popup.png -------------------------------------------------------------------------------- /app/www/images/popup/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/popup/b.png -------------------------------------------------------------------------------- /app/www/images/popup/bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/popup/bl.png -------------------------------------------------------------------------------- /app/www/images/popup/br.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/popup/br.gif -------------------------------------------------------------------------------- /app/www/images/popup/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/popup/br.png -------------------------------------------------------------------------------- /app/www/images/popup/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/popup/close.png -------------------------------------------------------------------------------- /app/www/images/popup/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/www/images/popup/l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/popup/l.png -------------------------------------------------------------------------------- /app/www/images/popup/r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/popup/r.png -------------------------------------------------------------------------------- /app/www/images/popup/t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/popup/t.png -------------------------------------------------------------------------------- /app/www/images/popup/tail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/popup/tail.png -------------------------------------------------------------------------------- /app/www/images/popup/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/popup/tl.png -------------------------------------------------------------------------------- /app/www/images/popup/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/popup/tr.png -------------------------------------------------------------------------------- /app/www/images/rarrow-hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/rarrow-hover.gif -------------------------------------------------------------------------------- /app/www/images/rarrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/rarrow.gif -------------------------------------------------------------------------------- /app/www/images/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/s.gif -------------------------------------------------------------------------------- /app/www/images/slide-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/slide-top.png -------------------------------------------------------------------------------- /app/www/images/trash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/trash.gif -------------------------------------------------------------------------------- /app/www/images/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/trash.png -------------------------------------------------------------------------------- /app/www/images/unavail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/unavail.gif -------------------------------------------------------------------------------- /app/www/images/unavail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/unavail.png -------------------------------------------------------------------------------- /app/www/images/wait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/wait.gif -------------------------------------------------------------------------------- /app/www/images/wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/wait.png -------------------------------------------------------------------------------- /app/www/images/whois.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/whois.gif -------------------------------------------------------------------------------- /app/www/images/whois.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/whois.png -------------------------------------------------------------------------------- /app/www/images/widget_flipbtn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/widget_flipbtn.gif -------------------------------------------------------------------------------- /app/www/images/widget_flipbtn_btm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/widget_flipbtn_btm.gif -------------------------------------------------------------------------------- /app/www/images/widget_flipline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/widget_flipline.gif -------------------------------------------------------------------------------- /app/www/images/widget_tab_reg_active.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/widget_tab_reg_active.jpg -------------------------------------------------------------------------------- /app/www/images/widget_tab_reg_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/widget_tab_reg_active.png -------------------------------------------------------------------------------- /app/www/images/wiz-main-grad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/wiz-main-grad.jpg -------------------------------------------------------------------------------- /app/www/images/wiz-wiz_btn_next_dis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/wiz-wiz_btn_next_dis.gif -------------------------------------------------------------------------------- /app/www/images/wiz_btn_cancel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/wiz_btn_cancel.gif -------------------------------------------------------------------------------- /app/www/images/wiz_btn_check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/wiz_btn_check.gif -------------------------------------------------------------------------------- /app/www/images/wiz_btn_co.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/wiz_btn_co.gif -------------------------------------------------------------------------------- /app/www/images/wiz_btn_next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/wiz_btn_next.gif -------------------------------------------------------------------------------- /app/www/images/wiz_btn_prev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/wiz_btn_prev.gif -------------------------------------------------------------------------------- /app/www/images/wiz_btn_recover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/wiz_btn_recover.gif -------------------------------------------------------------------------------- /app/www/images/wiz_tab_active.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/wiz_tab_active.jpg -------------------------------------------------------------------------------- /app/www/images/wiz_tab_active_l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/wiz_tab_active_l.gif -------------------------------------------------------------------------------- /app/www/images/wiz_tab_active_m.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/wiz_tab_active_m.gif -------------------------------------------------------------------------------- /app/www/images/wiz_tab_active_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/wiz_tab_active_r.gif -------------------------------------------------------------------------------- /app/www/images/wiz_tab_inactive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/wiz_tab_inactive.jpg -------------------------------------------------------------------------------- /app/www/images/wiz_tab_inactive_l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/wiz_tab_inactive_l.gif -------------------------------------------------------------------------------- /app/www/images/wiz_tab_inactive_m.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/wiz_tab_inactive_m.gif -------------------------------------------------------------------------------- /app/www/images/wiz_tab_inactive_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/images/wiz_tab_inactive_r.gif -------------------------------------------------------------------------------- /app/www/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/index.php -------------------------------------------------------------------------------- /app/www/ipn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/ipn.php -------------------------------------------------------------------------------- /app/www/js/Checklist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/Checklist.js -------------------------------------------------------------------------------- /app/www/js/ContactsManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/ContactsManager.js -------------------------------------------------------------------------------- /app/www/js/ContactsManagerBulk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/ContactsManagerBulk.js -------------------------------------------------------------------------------- /app/www/js/DomainChecker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/DomainChecker.js -------------------------------------------------------------------------------- /app/www/js/calendar.inc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/calendar.inc.js -------------------------------------------------------------------------------- /app/www/js/calendar/calendar-en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/calendar/calendar-en.js -------------------------------------------------------------------------------- /app/www/js/calendar/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/calendar/calendar.css -------------------------------------------------------------------------------- /app/www/js/calendar/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/calendar/calendar.js -------------------------------------------------------------------------------- /app/www/js/class.Cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/class.Cart.js -------------------------------------------------------------------------------- /app/www/js/class.LibWebta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/class.LibWebta.js -------------------------------------------------------------------------------- /app/www/js/class.NewPopup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/class.NewPopup.js -------------------------------------------------------------------------------- /app/www/js/class.SelectControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/class.SelectControl.js -------------------------------------------------------------------------------- /app/www/js/class.Tweaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/class.Tweaker.js -------------------------------------------------------------------------------- /app/www/js/common.inc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/common.inc.js -------------------------------------------------------------------------------- /app/www/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/common.js -------------------------------------------------------------------------------- /app/www/js/dmenu/dmenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/dmenu/dmenu.css -------------------------------------------------------------------------------- /app/www/js/dmenu/dmenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/dmenu/dmenu.js -------------------------------------------------------------------------------- /app/www/js/extjs/ext-all-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/extjs/ext-all-debug.js -------------------------------------------------------------------------------- /app/www/js/extjs/ext-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/extjs/ext-all.js -------------------------------------------------------------------------------- /app/www/js/extjs/ext-ux-lang.js.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/extjs/ext-ux-lang.js.php -------------------------------------------------------------------------------- /app/www/js/extjs/ext-ux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/extjs/ext-ux.js -------------------------------------------------------------------------------- /app/www/js/moo/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/www/js/moo/moo.fx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/moo/moo.fx.js -------------------------------------------------------------------------------- /app/www/js/moo/moo.fx.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/moo/moo.fx.pack.js -------------------------------------------------------------------------------- /app/www/js/phone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/phone.js -------------------------------------------------------------------------------- /app/www/js/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/prototype.js -------------------------------------------------------------------------------- /app/www/js/rectmarquee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/rectmarquee.js -------------------------------------------------------------------------------- /app/www/js/src/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/src/builder.js -------------------------------------------------------------------------------- /app/www/js/src/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/src/controls.js -------------------------------------------------------------------------------- /app/www/js/src/dragdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/src/dragdrop.js -------------------------------------------------------------------------------- /app/www/js/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/src/effects.js -------------------------------------------------------------------------------- /app/www/js/src/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/www/js/src/scriptaculous.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/src/scriptaculous.js -------------------------------------------------------------------------------- /app/www/js/src/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/src/slider.js -------------------------------------------------------------------------------- /app/www/js/src/sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/src/sound.js -------------------------------------------------------------------------------- /app/www/js/src/unittest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/src/unittest.js -------------------------------------------------------------------------------- /app/www/js/tooltip-v0.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/tooltip-v0.1.js -------------------------------------------------------------------------------- /app/www/js/treemenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/js/treemenu.js -------------------------------------------------------------------------------- /app/www/logo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/logo.php -------------------------------------------------------------------------------- /app/www/order/calculate_placeorder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/order/calculate_placeorder.php -------------------------------------------------------------------------------- /app/www/order/check_user.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/www/order/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/www/order/newclient.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/www/order/placeorder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/order/placeorder.php -------------------------------------------------------------------------------- /app/www/order/process_payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/order/process_payment.php -------------------------------------------------------------------------------- /app/www/order/select_user_type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/order/select_user_type.php -------------------------------------------------------------------------------- /app/www/payment_failed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/payment_failed.php -------------------------------------------------------------------------------- /app/www/payment_success.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/payment_success.php -------------------------------------------------------------------------------- /app/www/pdt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/pdt.php -------------------------------------------------------------------------------- /app/www/server/domain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/server/domain.php -------------------------------------------------------------------------------- /app/www/server/misc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/server/misc.php -------------------------------------------------------------------------------- /app/www/server/whois.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/server/whois.php -------------------------------------------------------------------------------- /app/www/src/prepend.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/src/prepend.inc.php -------------------------------------------------------------------------------- /app/www/terms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/terms.php -------------------------------------------------------------------------------- /app/www/testenvironment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/testenvironment.php -------------------------------------------------------------------------------- /app/www/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/app/www/tests.php -------------------------------------------------------------------------------- /sql/database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DicsyDel/epp-drs/HEAD/sql/database.sql --------------------------------------------------------------------------------