├── LICENSE ├── README ├── application ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── mimes.php │ ├── profiler.php │ ├── rest.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── api │ │ ├── example.php │ │ ├── example.php~ │ │ ├── key.php │ │ ├── portal.php │ │ └── portal.php~ │ ├── billing.php │ ├── command.php │ ├── customer.php │ ├── dashboard.php │ ├── index.html │ ├── reports.php │ ├── search.php │ ├── services.php │ ├── session.php │ ├── support.php │ ├── tickets.php │ ├── tools │ │ ├── admin.php │ │ ├── billing.php │ │ ├── dashboard.php │ │ └── user.php │ └── view.php ├── core │ ├── App_Controller.php │ └── index.html ├── errors │ ├── error_404.php │ ├── error_db.php │ ├── error_general.php │ ├── error_php.php │ └── index.html ├── helpers │ ├── date_helper.php │ ├── encryption_helper.php │ ├── enum_helper.php │ ├── htmlascii_helper.php │ ├── index.html │ ├── pager_helper.php │ └── schema_helper.php ├── hooks │ └── index.html ├── index.html ├── language │ └── english │ │ ├── citrus_lang.php │ │ └── index.html ├── libraries │ ├── Invoice.php │ ├── Notice.php │ ├── PasswordHash.php │ ├── PrintInvoice.php │ ├── REST_Controller.php │ ├── XMPPHP │ │ ├── BOSH.php │ │ ├── Exception.php │ │ ├── Log.php │ │ ├── Roster.php │ │ ├── XMLObj.php │ │ ├── XMLStream.php │ │ ├── XMPP.php │ │ └── XMPP_Old.php │ ├── font │ │ ├── courier.php │ │ ├── helvetica.php │ │ ├── helveticab.php │ │ ├── helveticabi.php │ │ ├── helveticai.php │ │ ├── symbol.php │ │ ├── times.php │ │ ├── timesb.php │ │ ├── timesbi.php │ │ ├── timesi.php │ │ └── zapfdingbats.php │ ├── fpdf.php │ ├── index.html │ └── swift │ │ ├── CHANGES │ │ ├── LICENSE │ │ ├── README │ │ ├── VERSION │ │ ├── lib │ │ ├── classes │ │ │ ├── Swift.php │ │ │ └── Swift │ │ │ │ ├── Attachment.php │ │ │ │ ├── ByteStream │ │ │ │ ├── AbstractFilterableInputStream.php │ │ │ │ ├── ArrayByteStream.php │ │ │ │ └── FileByteStream.php │ │ │ │ ├── CharacterReader.php │ │ │ │ ├── CharacterReader │ │ │ │ ├── GenericFixedWidthReader.php │ │ │ │ ├── UsAsciiReader.php │ │ │ │ └── Utf8Reader.php │ │ │ │ ├── CharacterReaderFactory.php │ │ │ │ ├── CharacterReaderFactory │ │ │ │ └── SimpleCharacterReaderFactory.php │ │ │ │ ├── CharacterStream.php │ │ │ │ ├── CharacterStream │ │ │ │ ├── ArrayCharacterStream.php │ │ │ │ └── NgCharacterStream.php │ │ │ │ ├── DependencyContainer.php │ │ │ │ ├── DependencyException.php │ │ │ │ ├── EmbeddedFile.php │ │ │ │ ├── Encoder.php │ │ │ │ ├── Encoder │ │ │ │ ├── Base64Encoder.php │ │ │ │ ├── QpEncoder.php │ │ │ │ └── Rfc2231Encoder.php │ │ │ │ ├── Encoding.php │ │ │ │ ├── Events │ │ │ │ ├── CommandEvent.php │ │ │ │ ├── CommandListener.php │ │ │ │ ├── Event.php │ │ │ │ ├── EventDispatcher.php │ │ │ │ ├── EventListener.php │ │ │ │ ├── EventObject.php │ │ │ │ ├── ResponseEvent.php │ │ │ │ ├── ResponseListener.php │ │ │ │ ├── SendEvent.php │ │ │ │ ├── SendListener.php │ │ │ │ ├── SimpleEventDispatcher.php │ │ │ │ ├── TransportChangeEvent.php │ │ │ │ ├── TransportChangeListener.php │ │ │ │ ├── TransportExceptionEvent.php │ │ │ │ └── TransportExceptionListener.php │ │ │ │ ├── FailoverTransport.php │ │ │ │ ├── FileStream.php │ │ │ │ ├── Filterable.php │ │ │ │ ├── Image.php │ │ │ │ ├── InputByteStream.php │ │ │ │ ├── IoException.php │ │ │ │ ├── KeyCache.php │ │ │ │ ├── KeyCache │ │ │ │ ├── ArrayKeyCache.php │ │ │ │ ├── DiskKeyCache.php │ │ │ │ ├── KeyCacheInputStream.php │ │ │ │ ├── NullKeyCache.php │ │ │ │ └── SimpleKeyCacheInputStream.php │ │ │ │ ├── LoadBalancedTransport.php │ │ │ │ ├── MailTransport.php │ │ │ │ ├── Mailer.php │ │ │ │ ├── Mailer │ │ │ │ ├── ArrayRecipientIterator.php │ │ │ │ └── RecipientIterator.php │ │ │ │ ├── Message.php │ │ │ │ ├── Mime │ │ │ │ ├── Attachment.php │ │ │ │ ├── CharsetObserver.php │ │ │ │ ├── ContentEncoder.php │ │ │ │ ├── ContentEncoder │ │ │ │ │ ├── Base64ContentEncoder.php │ │ │ │ │ ├── PlainContentEncoder.php │ │ │ │ │ └── QpContentEncoder.php │ │ │ │ ├── EmbeddedFile.php │ │ │ │ ├── EncodingObserver.php │ │ │ │ ├── Header.php │ │ │ │ ├── HeaderEncoder.php │ │ │ │ ├── HeaderEncoder │ │ │ │ │ ├── Base64HeaderEncoder.php │ │ │ │ │ └── QpHeaderEncoder.php │ │ │ │ ├── HeaderFactory.php │ │ │ │ ├── HeaderSet.php │ │ │ │ ├── Headers │ │ │ │ │ ├── AbstractHeader.php │ │ │ │ │ ├── DateHeader.php │ │ │ │ │ ├── IdentificationHeader.php │ │ │ │ │ ├── MailboxHeader.php │ │ │ │ │ ├── ParameterizedHeader.php │ │ │ │ │ ├── PathHeader.php │ │ │ │ │ └── UnstructuredHeader.php │ │ │ │ ├── Message.php │ │ │ │ ├── MimeEntity.php │ │ │ │ ├── MimePart.php │ │ │ │ ├── ParameterizedHeader.php │ │ │ │ ├── SimpleHeaderFactory.php │ │ │ │ ├── SimpleHeaderSet.php │ │ │ │ ├── SimpleMessage.php │ │ │ │ └── SimpleMimeEntity.php │ │ │ │ ├── MimePart.php │ │ │ │ ├── OutputByteStream.php │ │ │ │ ├── Plugins │ │ │ │ ├── AntiFloodPlugin.php │ │ │ │ ├── BandwidthMonitorPlugin.php │ │ │ │ ├── Decorator │ │ │ │ │ └── Replacements.php │ │ │ │ ├── DecoratorPlugin.php │ │ │ │ ├── Logger.php │ │ │ │ ├── LoggerPlugin.php │ │ │ │ ├── Loggers │ │ │ │ │ ├── ArrayLogger.php │ │ │ │ │ └── EchoLogger.php │ │ │ │ ├── Pop │ │ │ │ │ ├── Pop3Connection.php │ │ │ │ │ └── Pop3Exception.php │ │ │ │ ├── PopBeforeSmtpPlugin.php │ │ │ │ ├── Reporter.php │ │ │ │ ├── ReporterPlugin.php │ │ │ │ ├── Reporters │ │ │ │ │ ├── HitReporter.php │ │ │ │ │ └── HtmlReporter.php │ │ │ │ ├── Sleeper.php │ │ │ │ ├── ThrottlerPlugin.php │ │ │ │ └── Timer.php │ │ │ │ ├── Preferences.php │ │ │ │ ├── ReplacementFilterFactory.php │ │ │ │ ├── RfcComplianceException.php │ │ │ │ ├── SendmailTransport.php │ │ │ │ ├── SmtpTransport.php │ │ │ │ ├── StreamFilter.php │ │ │ │ ├── StreamFilters │ │ │ │ ├── ByteArrayReplacementFilter.php │ │ │ │ ├── StringReplacementFilter.php │ │ │ │ └── StringReplacementFilterFactory.php │ │ │ │ ├── SwiftException.php │ │ │ │ ├── Transport.php │ │ │ │ ├── Transport │ │ │ │ ├── AbstractSmtpTransport.php │ │ │ │ ├── Esmtp │ │ │ │ │ ├── Auth │ │ │ │ │ │ ├── CramMd5Authenticator.php │ │ │ │ │ │ ├── LoginAuthenticator.php │ │ │ │ │ │ └── PlainAuthenticator.php │ │ │ │ │ ├── AuthHandler.php │ │ │ │ │ └── Authenticator.php │ │ │ │ ├── EsmtpHandler.php │ │ │ │ ├── EsmtpTransport.php │ │ │ │ ├── FailoverTransport.php │ │ │ │ ├── IoBuffer.php │ │ │ │ ├── LoadBalancedTransport.php │ │ │ │ ├── MailInvoker.php │ │ │ │ ├── MailTransport.php │ │ │ │ ├── SendmailTransport.php │ │ │ │ ├── SimpleMailInvoker.php │ │ │ │ ├── SmtpAgent.php │ │ │ │ └── StreamBuffer.php │ │ │ │ └── TransportException.php │ │ ├── dependency_maps │ │ │ ├── cache_deps.php │ │ │ ├── mime_deps.php │ │ │ └── transport_deps.php │ │ ├── mime_types.php │ │ ├── preferences.php │ │ ├── swift_init.php │ │ ├── swift_required.php │ │ └── swift_required_pear.php │ │ └── tests │ │ ├── _samples │ │ ├── charsets │ │ │ ├── iso-8859-1 │ │ │ │ └── one.txt │ │ │ └── utf-8 │ │ │ │ ├── one.txt │ │ │ │ ├── three.txt │ │ │ │ └── two.txt │ │ └── files │ │ │ ├── data.txt │ │ │ └── textfile.zip │ │ ├── acceptance.conf.php │ │ ├── acceptance │ │ └── Swift │ │ │ ├── AttachmentAcceptanceTest.php │ │ │ ├── ByteStream │ │ │ └── FileByteStreamAcceptanceTest.php │ │ │ ├── CharacterReaderFactory │ │ │ └── SimpleCharacterReaderFactoryAcceptanceTest.php │ │ │ ├── DependencyContainerAcceptanceTest.php │ │ │ ├── EmbeddedFileAcceptanceTest.php │ │ │ ├── Encoder │ │ │ ├── Base64EncoderAcceptanceTest.php │ │ │ ├── QpEncoderAcceptanceTest.php │ │ │ └── Rfc2231EncoderAcceptanceTest.php │ │ │ ├── EncodingAcceptanceTest.php │ │ │ ├── KeyCache │ │ │ ├── ArrayKeyCacheAcceptanceTest.php │ │ │ └── DiskKeyCacheAcceptanceTest.php │ │ │ ├── MessageAcceptanceTest.php │ │ │ ├── Mime │ │ │ ├── AttachmentAcceptanceTest.php │ │ │ ├── ContentEncoder │ │ │ │ ├── Base64ContentEncoderAcceptanceTest.php │ │ │ │ ├── PlainContentEncoderAcceptanceTest.php │ │ │ │ └── QpContentEncoderAcceptanceTest.php │ │ │ ├── EmbeddedFileAcceptanceTest.php │ │ │ ├── MimePartAcceptanceTest.php │ │ │ └── SimpleMessageAcceptanceTest.php │ │ │ ├── MimePartAcceptanceTest.php │ │ │ └── Transport │ │ │ └── StreamBuffer │ │ │ ├── AbstractStreamBufferAcceptanceTest.php │ │ │ ├── BasicSocketAcceptanceTest.php │ │ │ ├── ProcessAcceptanceTest.php │ │ │ ├── SslSocketAcceptanceTest.php │ │ │ └── TlsSocketAcceptanceTest.php │ │ ├── bug │ │ └── Swift │ │ │ ├── Bug118Test.php │ │ │ ├── Bug34Test.php │ │ │ ├── Bug35Test.php │ │ │ ├── Bug38Test.php │ │ │ ├── Bug51Test.php │ │ │ ├── Bug71Test.php │ │ │ └── Bug76Test.php │ │ ├── helpers │ │ └── Swift │ │ │ └── Tests │ │ │ ├── IdenticalBinaryExpectation.php │ │ │ ├── SwiftSmokeTestCase.php │ │ │ └── SwiftUnitTestCase.php │ │ ├── smoke.conf.php │ │ ├── smoke │ │ └── Swift │ │ │ └── Smoke │ │ │ ├── AttachmentSmokeTest.php │ │ │ ├── BasicSmokeTest.php │ │ │ ├── HtmlWithAttachmentSmokeTest.php │ │ │ └── InternationalSmokeTest.php │ │ └── unit │ │ └── Swift │ │ ├── ByteStream │ │ └── ArrayByteStreamTest.php │ │ ├── CharacterReader │ │ ├── GenericFixedWidthReaderTest.php │ │ ├── UsAsciiReaderTest.php │ │ └── Utf8ReaderTest.php │ │ ├── CharacterStream │ │ └── ArrayCharacterStreamTest.php │ │ ├── DependencyContainerTest.php │ │ ├── Encoder │ │ ├── Base64EncoderTest.php │ │ ├── QpEncoderTest.php │ │ └── Rfc2231EncoderTest.php │ │ ├── Events │ │ ├── CommandEventTest.php │ │ ├── EventObjectTest.php │ │ ├── ResponseEventTest.php │ │ ├── SendEventTest.php │ │ ├── SimpleEventDispatcherTest.php │ │ ├── TransportChangeEventTest.php │ │ └── TransportExceptionEventTest.php │ │ ├── KeyCache │ │ ├── ArrayKeyCacheTest.php │ │ └── SimpleKeyCacheInputStreamTest.php │ │ ├── Mailer │ │ └── ArrayRecipientIteratorTest.php │ │ ├── MailerTest.php │ │ ├── Mime │ │ ├── AbstractMimeEntityTest.php │ │ ├── AttachmentTest.php │ │ ├── ContentEncoder │ │ │ ├── Base64ContentEncoderTest.php │ │ │ ├── PlainContentEncoderTest.php │ │ │ └── QpContentEncoderTest.php │ │ ├── EmbeddedFileTest.php │ │ ├── HeaderEncoder │ │ │ ├── Base64HeaderEncoderTest.php │ │ │ └── QpHeaderEncoderTest.php │ │ ├── Headers │ │ │ ├── DateHeaderTest.php │ │ │ ├── IdentificationHeaderTest.php │ │ │ ├── MailboxHeaderTest.php │ │ │ ├── ParameterizedHeaderTest.php │ │ │ ├── PathHeaderTest.php │ │ │ └── UnstructuredHeaderTest.php │ │ ├── MimePartTest.php │ │ ├── SimpleHeaderFactoryTest.php │ │ ├── SimpleHeaderSetTest.php │ │ ├── SimpleMessageTest.php │ │ └── SimpleMimeEntityTest.php │ │ ├── Plugins │ │ ├── AntiFloodPluginTest.php │ │ ├── BandwidthMonitorPluginTest.php │ │ ├── DecoratorPluginTest.php │ │ ├── LoggerPluginTest.php │ │ ├── Loggers │ │ │ ├── ArrayLoggerTest.php │ │ │ └── EchoLoggerTest.php │ │ ├── PopBeforeSmtpPluginTest.php │ │ ├── ReporterPluginTest.php │ │ ├── Reporters │ │ │ ├── HitReporterTest.php │ │ │ └── HtmlReporterTest.php │ │ └── ThrottlerPluginTest.php │ │ ├── StreamFilters │ │ ├── ByteArrayReplacementFilterTest.php │ │ ├── StringReplacementFilterFactoryTest.php │ │ └── StringReplacementFilterTest.php │ │ └── Transport │ │ ├── AbstractSmtpEventSupportTest.php │ │ ├── AbstractSmtpTest.php │ │ ├── Esmtp │ │ ├── Auth │ │ │ ├── CramMd5AuthenticatorTest.php │ │ │ ├── LoginAuthenticatorTest.php │ │ │ └── PlainAuthenticatorTest.php │ │ └── AuthHandlerTest.php │ │ ├── EsmtpTransport │ │ └── ExtensionSupportTest.php │ │ ├── EsmtpTransportTest.php │ │ ├── FailoverTransportTest.php │ │ ├── LoadBalancedTransportTest.php │ │ ├── MailTransportTest.php │ │ ├── SendmailTransportTest.php │ │ └── StreamBufferTest.php ├── logs │ └── index.html ├── migrations │ └── 001_Create_accounts.php ├── models │ ├── admin_model.php │ ├── billing_model.php │ ├── customer_model.php │ ├── general_model.php │ ├── index.html │ ├── log_model.php │ ├── module_model.php │ ├── reports_model.php │ ├── schema_model.php │ ├── service_model.php │ ├── settings_model.php │ ├── support_model.php │ ├── update_model.php │ └── user_model.php ├── third_party │ └── index.html └── views │ ├── billing │ ├── add_billing_record_view.php │ ├── alternate_view.php │ ├── asciiarmor_view.php │ ├── authorized_view.php │ ├── billinghistory_view.php │ ├── cancelnotice_view.php │ ├── cancelwfee_view.php │ ├── collections_view.php │ ├── collectionsnotice_view.php │ ├── createinvoice_view.php │ ├── deletepayment_view.php │ ├── detailhistory_view.php │ ├── edit_view.php │ ├── editinvoiceduedate_view.php │ ├── index_view.php │ ├── invmaint_view.php │ ├── mini_index_view.php │ ├── nsf_view.php │ ├── paymenthistory_view.php │ ├── receipt_view.php │ ├── refund_item_view.php │ ├── refund_view.php │ ├── removeinvoice_view.php │ ├── rerun_view.php │ ├── resetaddr_view.php │ ├── search_view.php │ ├── shutoffnotice_view.php │ ├── turnoff_view.php │ └── waiting_view.php │ ├── buttonbar_view.php │ ├── create.php │ ├── customer │ ├── cancel_view.php │ ├── dependent_cancel_view.php │ ├── edit_view.php │ ├── history_view.php │ ├── index_view.php │ ├── resetamp_view.php │ ├── search_view.php │ └── whycancel_view.php │ ├── customer_in_sidebar_view.php │ ├── dashboard_header_view.php │ ├── delete.php │ ├── edit.php │ ├── header_for_tickets_view.php │ ├── header_fullscreen.php │ ├── header_view.php │ ├── historyframe_tabs_view.php │ ├── html_footer_view.php │ ├── index.html │ ├── loginform_view.php │ ├── messagetabs_view.php │ ├── module_header_view.php │ ├── moduletabs_view.php │ ├── new_customer_view.php │ ├── recently_viewed_view.php │ ├── reports │ ├── baddebt_view.php │ ├── exempt_view.php │ ├── index_view.php │ ├── largecustomers_view.php │ ├── pastdue_view.php │ ├── pastdueexempt_view.php │ ├── paymentstatus_view.php │ ├── printnotices_view.php │ ├── refunds_view.php │ ├── revenue_view.php │ ├── servicechurn_view.php │ ├── services_view.php │ ├── showservices_view.php │ ├── showsources_view.php │ ├── sources_view.php │ ├── summary_view.php │ └── taxexempt_view.php │ ├── searchbox_view.php │ ├── services │ ├── add_options_form_view.php │ ├── create_view.php │ ├── delete_prompt.php │ ├── edit_removal_date_view.php │ ├── edit_view.php │ ├── heading_view.php │ ├── history_view.php │ ├── index_view.php │ ├── returnfieldassets_view.php │ ├── search_view.php │ ├── shipfieldassets_view.php │ ├── taxexempt_view.php │ └── vendor_history_view.php │ ├── support │ ├── editticket_view.php │ ├── index_view.php │ └── search_view.php │ ├── ticket_header_view.php │ ├── tickets │ ├── group_view.php │ └── user_view.php │ └── tools │ ├── admin │ ├── addgroup_view.php │ ├── addmodule_view.php │ ├── addmodulepermissions_view.php │ ├── addnewservice_view.php │ ├── billingtypes_view.php │ ├── changepass_view.php │ ├── confirmmergeaccounts_view.php │ ├── deletegroup_view.php │ ├── deletetaxedservice_view.php │ ├── deletetaxrate_view.php │ ├── deleteuser_view.php │ ├── editservice_view.php │ ├── edituser_view.php │ ├── fieldassets_view.php │ ├── groups_view.php │ ├── index_view.php │ ├── linkservices_view.php │ ├── mergeaccounts_view.php │ ├── modulepermissions_view.php │ ├── modules_view.php │ ├── newuser_view.php │ ├── optionstables_view.php │ ├── organization_view.php │ ├── removebillingtype_view.php │ ├── removemodulepermissions_view.php │ ├── services_view.php │ ├── settings_view.php │ ├── taxedservices_view.php │ ├── taxes_view.php │ └── users_view.php │ ├── billing │ ├── einvoice_view.php │ ├── exportcc_view.php │ ├── fixexportcc_view.php │ ├── importcc_view.php │ ├── importnew_view.php │ ├── index_view.php │ ├── invoice_view.php │ ├── payment_view.php │ ├── pendingrefund_view.php │ └── refundcc_view.php │ ├── customer │ └── index_view.php │ ├── services │ └── index_view.php │ ├── support │ └── index_view.php │ └── user │ ├── changepass_view.php │ ├── index_view.php │ ├── notifications_view.php │ └── version_view.php ├── calendar.php ├── citrus.css ├── citrus.sql ├── citrusdb.png ├── codeigniter_license.txt ├── documentation.html ├── favicon.ico ├── fullscreen.css ├── getweekends.pl ├── images ├── admin-icon.png ├── blank.gif ├── citrus-icon.png ├── citrus-logo.png ├── citrus_wedge.png ├── companylogo.png ├── completed.png ├── icons │ ├── citrus_changepass.png │ ├── citrus_config.png │ ├── citrus_creditcard.png │ ├── citrus_creditcards.png │ ├── citrus_declines.png │ ├── citrus_edit.png │ ├── citrus_email.png │ ├── citrus_groups.png │ ├── citrus_importnew.png │ ├── citrus_invmaint.png │ ├── citrus_linkservices.png │ ├── citrus_modules.png │ ├── citrus_money.png │ ├── citrus_newservices.png │ ├── citrus_optionstables.png │ ├── citrus_print.png │ ├── citrus_reminders.png │ ├── citrus_report.png │ ├── citrus_servicemanager.png │ ├── citrus_taxes.png │ ├── citrus_users.png │ └── citrus_version.png ├── logout-icon.png ├── minilogo.gif ├── minilogo.jpg ├── my-logo.png ├── new-icon.png ├── pending.png ├── plus_icon.gif ├── print-icon.png ├── reports-icon.png ├── search-icon.png ├── sidebar.gif └── spinner.gif ├── index.php ├── js ├── CalendarPopup.js ├── functions.js ├── md5.js ├── prototype.js └── verify.js ├── portal ├── LICENSE ├── application │ ├── .htaccess │ ├── cache │ │ ├── .htaccess │ │ └── index.html │ ├── config │ │ ├── autoload.php │ │ ├── config.php │ │ ├── constants.php │ │ ├── database.php │ │ ├── doctypes.php │ │ ├── foreign_chars.php │ │ ├── hooks.php │ │ ├── index.html │ │ ├── mimes.php │ │ ├── profiler.php │ │ ├── routes.php │ │ ├── smileys.php │ │ └── user_agents.php │ ├── controllers │ │ ├── index.html │ │ └── portal.php │ ├── core │ │ ├── MY_Loader.php │ │ └── index.html │ ├── errors │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ ├── helpers │ │ └── index.html │ ├── hooks │ │ └── index.html │ ├── index.html │ ├── language │ │ └── english │ │ │ └── index.html │ ├── libraries │ │ └── index.html │ ├── logs │ │ └── index.html │ ├── models │ │ └── index.html │ ├── third_party │ │ └── index.html │ └── views │ │ ├── index.html │ │ └── welcome_message.php ├── codeigniter_license.txt ├── index.php ├── sparks │ ├── curl │ │ └── 1.2.0 │ │ │ ├── README.markdown │ │ │ ├── config │ │ │ └── autoload.php │ │ │ ├── libraries │ │ │ └── Curl.php │ │ │ └── spark.info │ └── restclient │ │ └── 2.0.0 │ │ ├── README.md │ │ ├── config │ │ └── autoload.php │ │ ├── libraries │ │ ├── Rest.php │ │ └── index.html │ │ └── spark.info ├── ssl-cert-snakeoil.pem ├── system │ ├── .htaccess │ ├── core │ │ ├── Benchmark.php │ │ ├── CodeIgniter.php │ │ ├── Common.php │ │ ├── Config.php │ │ ├── Controller.php │ │ ├── Exceptions.php │ │ ├── Hooks.php │ │ ├── Input.php │ │ ├── Lang.php │ │ ├── Loader.php │ │ ├── Model.php │ │ ├── Output.php │ │ ├── Router.php │ │ ├── Security.php │ │ ├── URI.php │ │ ├── Utf8.php │ │ └── index.html │ ├── database │ │ ├── DB.php │ │ ├── DB_active_rec.php │ │ ├── DB_cache.php │ │ ├── DB_driver.php │ │ ├── DB_forge.php │ │ ├── DB_result.php │ │ ├── DB_utility.php │ │ ├── drivers │ │ │ ├── index.html │ │ │ ├── mssql │ │ │ │ ├── index.html │ │ │ │ ├── mssql_driver.php │ │ │ │ ├── mssql_forge.php │ │ │ │ ├── mssql_result.php │ │ │ │ └── mssql_utility.php │ │ │ ├── mysql │ │ │ │ ├── index.html │ │ │ │ ├── mysql_driver.php │ │ │ │ ├── mysql_forge.php │ │ │ │ ├── mysql_result.php │ │ │ │ └── mysql_utility.php │ │ │ ├── mysqli │ │ │ │ ├── index.html │ │ │ │ ├── mysqli_driver.php │ │ │ │ ├── mysqli_forge.php │ │ │ │ ├── mysqli_result.php │ │ │ │ └── mysqli_utility.php │ │ │ ├── oci8 │ │ │ │ ├── index.html │ │ │ │ ├── oci8_driver.php │ │ │ │ ├── oci8_forge.php │ │ │ │ ├── oci8_result.php │ │ │ │ └── oci8_utility.php │ │ │ ├── odbc │ │ │ │ ├── index.html │ │ │ │ ├── odbc_driver.php │ │ │ │ ├── odbc_forge.php │ │ │ │ ├── odbc_result.php │ │ │ │ └── odbc_utility.php │ │ │ ├── postgre │ │ │ │ ├── index.html │ │ │ │ ├── postgre_driver.php │ │ │ │ ├── postgre_forge.php │ │ │ │ ├── postgre_result.php │ │ │ │ └── postgre_utility.php │ │ │ └── sqlite │ │ │ │ ├── index.html │ │ │ │ ├── sqlite_driver.php │ │ │ │ ├── sqlite_forge.php │ │ │ │ ├── sqlite_result.php │ │ │ │ └── sqlite_utility.php │ │ └── index.html │ ├── fonts │ │ ├── index.html │ │ └── texb.ttf │ ├── helpers │ │ ├── array_helper.php │ │ ├── captcha_helper.php │ │ ├── cookie_helper.php │ │ ├── date_helper.php │ │ ├── directory_helper.php │ │ ├── download_helper.php │ │ ├── email_helper.php │ │ ├── file_helper.php │ │ ├── form_helper.php │ │ ├── html_helper.php │ │ ├── index.html │ │ ├── inflector_helper.php │ │ ├── language_helper.php │ │ ├── number_helper.php │ │ ├── path_helper.php │ │ ├── security_helper.php │ │ ├── smiley_helper.php │ │ ├── string_helper.php │ │ ├── text_helper.php │ │ ├── typography_helper.php │ │ ├── url_helper.php │ │ └── xml_helper.php │ ├── index.html │ ├── language │ │ ├── english │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ └── index.html │ └── libraries │ │ ├── Cache │ │ ├── Cache.php │ │ └── drivers │ │ │ ├── Cache_apc.php │ │ │ ├── Cache_dummy.php │ │ │ ├── Cache_file.php │ │ │ └── Cache_memcached.php │ │ ├── Calendar.php │ │ ├── Cart.php │ │ ├── Driver.php │ │ ├── Email.php │ │ ├── Encrypt.php │ │ ├── Form_validation.php │ │ ├── Ftp.php │ │ ├── Image_lib.php │ │ ├── Javascript.php │ │ ├── Log.php │ │ ├── Pagination.php │ │ ├── Parser.php │ │ ├── Profiler.php │ │ ├── Session.php │ │ ├── Sha1.php │ │ ├── Table.php │ │ ├── Trackback.php │ │ ├── Typography.php │ │ ├── Unit_test.php │ │ ├── Upload.php │ │ ├── User_agent.php │ │ ├── Xmlrpc.php │ │ ├── Xmlrpcs.php │ │ ├── Zip.php │ │ ├── index.html │ │ └── javascript │ │ └── Jquery.php ├── tools │ ├── lib │ │ └── spark │ │ │ ├── sources │ │ │ ├── spark_cli.php │ │ │ ├── spark_exception.php │ │ │ ├── spark_source.php │ │ │ ├── spark_type.php │ │ │ ├── spark_types │ │ │ ├── git_spark.php │ │ │ ├── hg_spark.php │ │ │ └── zip_spark.php │ │ │ └── spark_utils.php │ └── spark └── user_guide │ ├── changelog.html │ ├── database │ ├── active_record.html │ ├── caching.html │ ├── call_function.html │ ├── configuration.html │ ├── connecting.html │ ├── examples.html │ ├── fields.html │ ├── forge.html │ ├── helpers.html │ ├── index.html │ ├── queries.html │ ├── results.html │ ├── table_data.html │ ├── transactions.html │ └── utilities.html │ ├── doc_style │ ├── index.html │ └── template.html │ ├── general │ ├── alternative_php.html │ ├── ancillary_classes.html │ ├── autoloader.html │ ├── caching.html │ ├── cli.html │ ├── common_functions.html │ ├── controllers.html │ ├── core_classes.html │ ├── creating_drivers.html │ ├── creating_libraries.html │ ├── credits.html │ ├── drivers.html │ ├── environments.html │ ├── errors.html │ ├── helpers.html │ ├── hooks.html │ ├── libraries.html │ ├── managing_apps.html │ ├── models.html │ ├── profiling.html │ ├── quick_reference.html │ ├── requirements.html │ ├── reserved_names.html │ ├── routing.html │ ├── security.html │ ├── styleguide.html │ ├── urls.html │ └── views.html │ ├── helpers │ ├── array_helper.html │ ├── captcha_helper.html │ ├── cookie_helper.html │ ├── date_helper.html │ ├── directory_helper.html │ ├── download_helper.html │ ├── email_helper.html │ ├── file_helper.html │ ├── form_helper.html │ ├── html_helper.html │ ├── inflector_helper.html │ ├── language_helper.html │ ├── number_helper.html │ ├── path_helper.html │ ├── security_helper.html │ ├── smiley_helper.html │ ├── string_helper.html │ ├── text_helper.html │ ├── typography_helper.html │ ├── url_helper.html │ └── xml_helper.html │ ├── images │ ├── appflowchart.gif │ ├── arrow.gif │ ├── ci_logo.jpg │ ├── ci_logo_flame.jpg │ ├── ci_quick_ref.png │ ├── codeigniter_1.7.1_helper_reference.pdf │ ├── codeigniter_1.7.1_helper_reference.png │ ├── codeigniter_1.7.1_library_reference.pdf │ ├── codeigniter_1.7.1_library_reference.png │ ├── file.gif │ ├── folder.gif │ ├── nav_bg_darker.jpg │ ├── nav_separator_darker.jpg │ ├── nav_toggle_darker.jpg │ ├── reactor-bullet.png │ ├── smile.gif │ └── transparent.gif │ ├── index.html │ ├── installation │ ├── downloads.html │ ├── index.html │ ├── troubleshooting.html │ ├── upgrade_120.html │ ├── upgrade_130.html │ ├── upgrade_131.html │ ├── upgrade_132.html │ ├── upgrade_133.html │ ├── upgrade_140.html │ ├── upgrade_141.html │ ├── upgrade_150.html │ ├── upgrade_152.html │ ├── upgrade_153.html │ ├── upgrade_154.html │ ├── upgrade_160.html │ ├── upgrade_161.html │ ├── upgrade_162.html │ ├── upgrade_163.html │ ├── upgrade_170.html │ ├── upgrade_171.html │ ├── upgrade_172.html │ ├── upgrade_200.html │ ├── upgrade_201.html │ ├── upgrade_202.html │ ├── upgrade_b11.html │ └── upgrading.html │ ├── libraries │ ├── benchmark.html │ ├── caching.html │ ├── calendar.html │ ├── cart.html │ ├── config.html │ ├── email.html │ ├── encryption.html │ ├── file_uploading.html │ ├── form_validation.html │ ├── ftp.html │ ├── image_lib.html │ ├── input.html │ ├── javascript.html │ ├── language.html │ ├── loader.html │ ├── output.html │ ├── pagination.html │ ├── parser.html │ ├── security.html │ ├── sessions.html │ ├── table.html │ ├── trackback.html │ ├── typography.html │ ├── unit_testing.html │ ├── uri.html │ ├── user_agent.html │ ├── xmlrpc.html │ └── zip.html │ ├── license.html │ ├── nav │ ├── hacks.txt │ ├── moo.fx.js │ ├── nav.js │ ├── prototype.lite.js │ └── user_guide_menu.js │ ├── overview │ ├── appflow.html │ ├── at_a_glance.html │ ├── cheatsheets.html │ ├── features.html │ ├── getting_started.html │ ├── goals.html │ ├── index.html │ └── mvc.html │ ├── toc.html │ └── userguide.css └── system ├── .htaccess ├── core ├── Benchmark.php ├── CodeIgniter.php ├── Common.php ├── Config.php ├── Controller.php ├── Exceptions.php ├── Hooks.php ├── Input.php ├── Lang.php ├── Loader.php ├── Model.php ├── Output.php ├── Router.php ├── Security.php ├── URI.php ├── Utf8.php └── index.html ├── database ├── DB.php ├── DB_active_rec.php ├── DB_cache.php ├── DB_driver.php ├── DB_forge.php ├── DB_result.php ├── DB_utility.php ├── drivers │ ├── cubrid │ │ ├── cubrid_driver.php │ │ ├── cubrid_forge.php │ │ ├── cubrid_result.php │ │ ├── cubrid_utility.php │ │ └── index.html │ ├── index.html │ ├── mssql │ │ ├── index.html │ │ ├── mssql_driver.php │ │ ├── mssql_forge.php │ │ ├── mssql_result.php │ │ └── mssql_utility.php │ ├── mysql │ │ ├── index.html │ │ ├── mysql_driver.php │ │ ├── mysql_forge.php │ │ ├── mysql_result.php │ │ └── mysql_utility.php │ ├── mysqli │ │ ├── index.html │ │ ├── mysqli_driver.php │ │ ├── mysqli_forge.php │ │ ├── mysqli_result.php │ │ └── mysqli_utility.php │ ├── oci8 │ │ ├── index.html │ │ ├── oci8_driver.php │ │ ├── oci8_forge.php │ │ ├── oci8_result.php │ │ └── oci8_utility.php │ ├── odbc │ │ ├── index.html │ │ ├── odbc_driver.php │ │ ├── odbc_forge.php │ │ ├── odbc_result.php │ │ └── odbc_utility.php │ ├── pdo │ │ ├── index.html │ │ ├── pdo_driver.php │ │ ├── pdo_forge.php │ │ ├── pdo_result.php │ │ └── pdo_utility.php │ ├── postgre │ │ ├── index.html │ │ ├── postgre_driver.php │ │ ├── postgre_forge.php │ │ ├── postgre_result.php │ │ └── postgre_utility.php │ ├── sqlite │ │ ├── index.html │ │ ├── sqlite_driver.php │ │ ├── sqlite_forge.php │ │ ├── sqlite_result.php │ │ └── sqlite_utility.php │ └── sqlsrv │ │ ├── index.html │ │ ├── sqlsrv_driver.php │ │ ├── sqlsrv_forge.php │ │ ├── sqlsrv_result.php │ │ └── sqlsrv_utility.php └── index.html ├── fonts ├── index.html └── texb.ttf ├── helpers ├── array_helper.php ├── captcha_helper.php ├── cookie_helper.php ├── date_helper.php ├── directory_helper.php ├── download_helper.php ├── email_helper.php ├── file_helper.php ├── form_helper.php ├── html_helper.php ├── index.html ├── inflector_helper.php ├── language_helper.php ├── number_helper.php ├── path_helper.php ├── security_helper.php ├── smiley_helper.php ├── string_helper.php ├── text_helper.php ├── typography_helper.php ├── url_helper.php └── xml_helper.php ├── index.html ├── language ├── english │ ├── calendar_lang.php │ ├── date_lang.php │ ├── db_lang.php │ ├── email_lang.php │ ├── form_validation_lang.php │ ├── ftp_lang.php │ ├── imglib_lang.php │ ├── index.html │ ├── migration_lang.php │ ├── number_lang.php │ ├── profiler_lang.php │ ├── unit_test_lang.php │ └── upload_lang.php └── index.html └── libraries ├── Cache ├── Cache.php └── drivers │ ├── Cache_apc.php │ ├── Cache_dummy.php │ ├── Cache_file.php │ └── Cache_memcached.php ├── Calendar.php ├── Cart.php ├── Driver.php ├── Email.php ├── Encrypt.php ├── Form_validation.php ├── Ftp.php ├── Image_lib.php ├── Javascript.php ├── Log.php ├── Migration.php ├── Pagination.php ├── Parser.php ├── Profiler.php ├── Session.php ├── Sha1.php ├── Table.php ├── Trackback.php ├── Typography.php ├── Unit_test.php ├── Upload.php ├── User_agent.php ├── Xmlrpc.php ├── Xmlrpcs.php ├── Zip.php ├── index.html └── javascript └── Jquery.php /application/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/config/doctypes.php: -------------------------------------------------------------------------------- 1 | '', 5 | 'xhtml1-strict' => '', 6 | 'xhtml1-trans' => '', 7 | 'xhtml1-frame' => '', 8 | 'html5' => '', 9 | 'html4-strict' => '', 10 | 'html4-trans' => '', 11 | 'html4-frame' => '' 12 | ); 13 | 14 | /* End of file doctypes.php */ 15 | /* Location: ./application/config/doctypes.php */ -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 |