├── fuel ├── install │ ├── .htaccess │ └── upgrades │ │ ├── fuel_1.2_schema_changes.sql │ │ └── fuel_1.3_schema_changes.sql ├── scripts │ └── .htaccess ├── application │ ├── .htaccess │ ├── cache │ │ ├── .htaccess │ │ ├── index.html │ │ └── dwoo │ │ │ ├── index.html │ │ │ └── compiled │ │ │ └── index.html │ ├── logs │ │ ├── .htaccess │ │ └── index.html │ ├── views │ │ ├── _layouts │ │ │ ├── none.php │ │ │ ├── 301_redirect.php │ │ │ ├── robots_txt.php │ │ │ ├── 404_error.php │ │ │ ├── main.php │ │ │ └── alias.php │ │ ├── home.php │ │ ├── _docs │ │ │ └── fuel.php │ │ ├── offline.php │ │ ├── index.html │ │ ├── errors │ │ │ ├── cli │ │ │ │ ├── error_404.php │ │ │ │ ├── error_general.php │ │ │ │ ├── error_db.php │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── html │ │ │ │ └── index.html │ │ ├── _admin │ │ │ └── _fuel_preview.php │ │ ├── _blocks │ │ │ └── posts │ │ │ │ ├── post_unpublished.php │ │ │ │ ├── tags.php │ │ │ │ └── categories.php │ │ └── _variables │ │ │ └── global.php │ ├── core │ │ ├── MY_Hooks.php │ │ ├── MY_Model.php │ │ ├── MY_Controller.php │ │ ├── MY_Exceptions.php │ │ ├── MY_DB_mysql_driver.php │ │ ├── MY_DB_mysql_result.php │ │ ├── MY_DB_mysqli_driver.php │ │ ├── MY_DB_mysqli_result.php │ │ ├── index.html │ │ ├── MY_Loader.php │ │ └── MY_Router.php │ ├── helpers │ │ ├── MY_url_helper.php │ │ ├── MY_array_helper.php │ │ ├── MY_date_helper.php │ │ ├── MY_file_helper.php │ │ ├── MY_html_helper.php │ │ ├── MY_string_helper.php │ │ ├── MY_language_helper.php │ │ ├── MY_directory_helper.php │ │ ├── index.html │ │ └── my_helper.php │ ├── libraries │ │ ├── MY_Image_lib.php │ │ ├── MY_Profiler.php │ │ ├── MY_Typography.php │ │ ├── MY_DB_mysqli_utility.php │ │ └── index.html │ ├── index.html │ ├── hooks │ │ └── index.html │ ├── config │ │ ├── index.html │ │ ├── google.php │ │ ├── MY_config.php │ │ ├── profiler.php │ │ ├── custom_fields.php │ │ ├── memcached.php │ │ └── environments.php │ ├── models │ │ └── index.html │ ├── controllers │ │ └── index.html │ ├── third_party │ │ └── index.html │ ├── language │ │ └── english │ │ │ └── index.html │ └── migrations │ │ └── 001_install.php ├── data_backup │ ├── .htaccess │ └── index.html ├── modules │ ├── fuel │ │ ├── views │ │ │ ├── _docs │ │ │ │ ├── _examples │ │ │ │ │ └── forms.php │ │ │ │ ├── libraries │ │ │ │ │ ├── my_model.php │ │ │ │ │ ├── simplepie.php │ │ │ │ │ ├── unzip.php │ │ │ │ │ ├── my_parser.php │ │ │ │ │ ├── cache.php │ │ │ │ │ ├── my_hooks.php │ │ │ │ │ ├── my_typography.php │ │ │ │ │ ├── fuel_base_controller.php │ │ │ │ │ └── modular_extensions.php │ │ │ │ ├── helpers │ │ │ │ │ └── my_helper.php │ │ │ │ ├── general │ │ │ │ │ ├── logs.php │ │ │ │ │ ├── license.php │ │ │ │ │ ├── contribute.php │ │ │ │ │ └── site-variables.php │ │ │ │ ├── installation │ │ │ │ │ ├── configuration.php │ │ │ │ │ ├── db-setup.php │ │ │ │ │ └── requirements.php │ │ │ │ └── introduction │ │ │ │ │ └── demo-site.php │ │ │ ├── _generate │ │ │ │ ├── advanced │ │ │ │ │ ├── config │ │ │ │ │ │ ├── {module}_routes.php │ │ │ │ │ │ ├── {module}_constants.php │ │ │ │ │ │ └── {module}.php │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── {module}.css │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── ico_cog.png │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── {ModuleName}Controller.js │ │ │ │ │ ├── language │ │ │ │ │ │ └── english │ │ │ │ │ │ │ └── {module}_lang.php │ │ │ │ │ ├── views │ │ │ │ │ │ ├── _admin │ │ │ │ │ │ │ └── {module}.php │ │ │ │ │ │ └── _docs │ │ │ │ │ │ │ └── index.php │ │ │ │ │ └── install │ │ │ │ │ │ └── install.php │ │ │ │ ├── simple │ │ │ │ │ └── MY_fuel_modules.php │ │ │ │ ├── results_cli.php │ │ │ │ └── model │ │ │ │ │ └── sql │ │ │ │ │ └── careers.sql │ │ │ ├── _blocks │ │ │ │ ├── search_filters.php │ │ │ │ ├── fuel_footer_copyright.php │ │ │ │ ├── fuel_top.php │ │ │ │ ├── module_list_table.php │ │ │ │ ├── fuel_header.php │ │ │ │ └── warning_window.php │ │ │ ├── modules │ │ │ │ ├── module_replace.php │ │ │ │ └── module_close_modal.php │ │ │ ├── index.html │ │ │ ├── manage │ │ │ │ ├── settings.php │ │ │ │ ├── my_modules.php │ │ │ │ └── cache.php │ │ │ ├── my_profile.php │ │ │ ├── modal_select.php │ │ │ ├── upload.php │ │ │ ├── tools.php │ │ │ ├── settings.php │ │ │ └── preview.php │ │ ├── libraries │ │ │ ├── HTML5Purifier │ │ │ │ ├── vendor │ │ │ │ │ ├── ezyang │ │ │ │ │ │ └── htmlpurifier │ │ │ │ │ │ │ ├── VERSION │ │ │ │ │ │ │ ├── library │ │ │ │ │ │ │ ├── HTMLPurifier │ │ │ │ │ │ │ │ ├── ConfigSchema │ │ │ │ │ │ │ │ │ ├── schema │ │ │ │ │ │ │ │ │ │ ├── info.ini │ │ │ │ │ │ │ │ │ │ ├── Attr.IDBlacklist.txt │ │ │ │ │ │ │ │ │ │ ├── HTML.Nofollow.txt │ │ │ │ │ │ │ │ │ │ ├── HTML.TidyAdd.txt │ │ │ │ │ │ │ │ │ │ ├── HTML.TidyRemove.txt │ │ │ │ │ │ │ │ │ │ ├── CSS.Proprietary.txt │ │ │ │ │ │ │ │ │ │ ├── Test.ForceNoIconv.txt │ │ │ │ │ │ │ │ │ │ ├── Core.EscapeInvalidTags.txt │ │ │ │ │ │ │ │ │ │ ├── CSS.DefinitionRev.txt │ │ │ │ │ │ │ │ │ │ ├── URI.DefinitionRev.txt │ │ │ │ │ │ │ │ │ │ ├── Attr.AllowedClasses.txt │ │ │ │ │ │ │ │ │ │ ├── HTML.Strict.txt │ │ │ │ │ │ │ │ │ │ ├── CSS.AllowImportant.txt │ │ │ │ │ │ │ │ │ │ ├── HTML.CustomDoctype.txt │ │ │ │ │ │ │ │ │ │ ├── HTML.TargetBlank.txt │ │ │ │ │ │ │ │ │ │ ├── HTML.XHTML.txt │ │ │ │ │ │ │ │ │ │ ├── CSS.Trusted.txt │ │ │ │ │ │ │ │ │ │ ├── URI.DefinitionID.txt │ │ │ │ │ │ │ │ │ │ ├── Attr.AllowedRev.txt │ │ │ │ │ │ │ │ │ │ ├── Attr.ForbiddenClasses.txt │ │ │ │ │ │ │ │ │ │ ├── HTML.Trusted.txt │ │ │ │ │ │ │ │ │ │ ├── HTML.SafeScripting.txt │ │ │ │ │ │ │ │ │ │ ├── Output.FlashCompat.txt │ │ │ │ │ │ │ │ │ │ ├── Attr.AllowedRel.txt │ │ │ │ │ │ │ │ │ │ ├── AutoFormat.Linkify.txt │ │ │ │ │ │ │ │ │ │ ├── CSS.AllowDuplicates.txt │ │ │ │ │ │ │ │ │ │ ├── HTML.TargetNoreferrer.txt │ │ │ │ │ │ │ │ │ │ ├── Output.CommentScriptContents.txt │ │ │ │ │ │ │ │ │ │ ├── URI.Disable.txt │ │ │ │ │ │ │ │ │ │ ├── Core.Language.txt │ │ │ │ │ │ │ │ │ │ ├── Core.NormalizeNewlines.txt │ │ │ │ │ │ │ │ │ │ ├── Attr.DefaultInvalidImageAlt.txt │ │ │ │ │ │ │ │ │ │ ├── Attr.DefaultTextDir.txt │ │ │ │ │ │ │ │ │ │ ├── Core.EnableIDNA.txt │ │ │ │ │ │ │ │ │ │ ├── Core.RemoveScriptContents.txt │ │ │ │ │ │ │ │ │ │ ├── HTML.FlashAllowFullScreen.txt │ │ │ │ │ │ │ │ │ │ ├── URI.HostBlacklist.txt │ │ │ │ │ │ │ │ │ │ ├── AutoFormat.Custom.txt │ │ │ │ │ │ │ │ │ │ ├── Filter.Custom.txt │ │ │ │ │ │ │ │ │ │ ├── HTML.TargetNoopener.txt │ │ │ │ │ │ │ │ │ │ ├── Attr.IDBlacklistRegexp.txt │ │ │ │ │ │ │ │ │ │ ├── HTML.Parent.txt │ │ │ │ │ │ │ │ │ │ ├── Attr.DefaultInvalidImage.txt │ │ │ │ │ │ │ │ │ │ ├── AutoFormat.RemoveSpansWithoutAttributes.txt │ │ │ │ │ │ │ │ │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ │ │ │ │ │ │ │ │ ├── AutoFormat.PurifierLinkify.txt │ │ │ │ │ │ │ │ │ │ ├── HTML.Forms.txt │ │ │ │ │ │ │ │ │ │ ├── URI.OverrideAllowedSchemes.txt │ │ │ │ │ │ │ │ │ │ ├── Core.AllowParseManyTags.txt │ │ │ │ │ │ │ │ │ │ ├── HTML.Proprietary.txt │ │ │ │ │ │ │ │ │ │ ├── Cache.SerializerPath.txt │ │ │ │ │ │ │ │ │ │ ├── Core.RemoveInvalidImg.txt │ │ │ │ │ │ │ │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt │ │ │ │ │ │ │ │ │ │ ├── CSS.AllowedFonts.txt │ │ │ │ │ │ │ │ │ │ ├── HTML.AllowedComments.txt │ │ │ │ │ │ │ │ │ │ ├── Output.Newline.txt │ │ │ │ │ │ │ │ │ │ ├── Attr.ID.HTML5.txt │ │ │ │ │ │ │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ │ │ │ │ │ │ │ │ ├── Cache.DefinitionImpl.txt │ │ │ │ │ │ │ │ │ │ ├── URI.MakeAbsolute.txt │ │ │ │ │ │ │ │ │ │ ├── HTML.SafeIframe.txt │ │ │ │ │ │ │ │ │ │ ├── Core.RemoveProcessingInstructions.txt │ │ │ │ │ │ │ │ │ │ ├── URI.DefaultScheme.txt │ │ │ │ │ │ │ │ │ │ ├── Core.CollectErrors.txt │ │ │ │ │ │ │ │ │ │ ├── Cache.SerializerPermissions.txt │ │ │ │ │ │ │ │ │ │ ├── URI.DisableExternal.txt │ │ │ │ │ │ │ │ │ │ ├── HTML.SafeObject.txt │ │ │ │ │ │ │ │ │ │ ├── URI.DisableResources.txt │ │ │ │ │ │ │ │ │ │ ├── CSS.AllowTricky.txt │ │ │ │ │ │ │ │ │ │ ├── Core.ConvertDocumentToFragment.txt │ │ │ │ │ │ │ │ │ │ ├── HTML.Doctype.txt │ │ │ │ │ │ │ │ │ │ ├── Attr.IDPrefix.txt │ │ │ │ │ │ │ │ │ │ ├── Core.DisableExcludes.txt │ │ │ │ │ │ │ │ │ │ ├── CSS.ForbiddenProperties.txt │ │ │ │ │ │ │ │ │ │ ├── HTML.Attr.Name.UseCDATA.txt │ │ │ │ │ │ │ │ │ │ ├── Attr.DefaultImageAlt.txt │ │ │ │ │ │ │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt │ │ │ │ │ │ │ │ │ │ ├── HTML.SafeEmbed.txt │ │ │ │ │ │ │ │ │ │ └── HTML.MaxImgLength.txt │ │ │ │ │ │ │ │ │ └── Exception.php │ │ │ │ │ │ │ │ ├── DefinitionCache │ │ │ │ │ │ │ │ │ └── Serializer │ │ │ │ │ │ │ │ │ │ └── README │ │ │ │ │ │ │ │ ├── Printer │ │ │ │ │ │ │ │ │ ├── ConfigForm.js │ │ │ │ │ │ │ │ │ └── ConfigForm.css │ │ │ │ │ │ │ │ ├── Token │ │ │ │ │ │ │ │ │ ├── Start.php │ │ │ │ │ │ │ │ │ └── Empty.php │ │ │ │ │ │ │ │ ├── VarParserException.php │ │ │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ │ │ ├── HTMLModule │ │ │ │ │ │ │ │ │ ├── Tidy │ │ │ │ │ │ │ │ │ │ ├── Transitional.php │ │ │ │ │ │ │ │ │ │ └── XHTML.php │ │ │ │ │ │ │ │ │ ├── XMLCommonAttributes.php │ │ │ │ │ │ │ │ │ └── NonXMLCommonAttributes.php │ │ │ │ │ │ │ │ ├── URIScheme │ │ │ │ │ │ │ │ │ └── https.php │ │ │ │ │ │ │ │ ├── AttrDef │ │ │ │ │ │ │ │ │ ├── URI │ │ │ │ │ │ │ │ │ │ └── Email.php │ │ │ │ │ │ │ │ │ └── Text.php │ │ │ │ │ │ │ │ └── URIFilter │ │ │ │ │ │ │ │ │ └── DisableResources.php │ │ │ │ │ │ │ ├── HTMLPurifier.composer.php │ │ │ │ │ │ │ ├── HTMLPurifier.path.php │ │ │ │ │ │ │ ├── HTMLPurifier.auto.php │ │ │ │ │ │ │ └── HTMLPurifier.autoload-legacy.php │ │ │ │ │ │ │ └── CREDITS │ │ │ │ │ ├── autoload.php │ │ │ │ │ └── composer │ │ │ │ │ │ ├── autoload_psr4.php │ │ │ │ │ │ ├── autoload_namespaces.php │ │ │ │ │ │ └── autoload_files.php │ │ │ │ ├── index.php │ │ │ │ └── composer.json │ │ │ ├── index.html │ │ │ └── parser │ │ │ │ ├── dwoo │ │ │ │ ├── dwooAutoload.php │ │ │ │ └── Dwoo │ │ │ │ │ ├── Adapters │ │ │ │ │ └── CodeIgniter │ │ │ │ │ │ ├── controllers │ │ │ │ │ │ └── dwoowelcome.php │ │ │ │ │ │ └── config │ │ │ │ │ │ └── dwootemplate.php │ │ │ │ │ └── Exception.php │ │ │ │ └── Twig │ │ │ │ ├── Node │ │ │ │ ├── Body.php │ │ │ │ ├── Expression │ │ │ │ │ ├── Binary │ │ │ │ │ │ ├── Equal.php │ │ │ │ │ │ ├── Less.php │ │ │ │ │ │ ├── Greater.php │ │ │ │ │ │ ├── NotEqual.php │ │ │ │ │ │ ├── LessEqual.php │ │ │ │ │ │ ├── GreaterEqual.php │ │ │ │ │ │ ├── Or.php │ │ │ │ │ │ ├── Add.php │ │ │ │ │ │ ├── And.php │ │ │ │ │ │ ├── Div.php │ │ │ │ │ │ ├── Mod.php │ │ │ │ │ │ ├── Mul.php │ │ │ │ │ │ ├── Sub.php │ │ │ │ │ │ ├── Concat.php │ │ │ │ │ │ ├── BitwiseAnd.php │ │ │ │ │ │ ├── BitwiseOr.php │ │ │ │ │ │ └── BitwiseXor.php │ │ │ │ │ └── Unary │ │ │ │ │ │ ├── Neg.php │ │ │ │ │ │ ├── Not.php │ │ │ │ │ │ └── Pos.php │ │ │ │ └── Expression.php │ │ │ │ ├── NodeOutputInterface.php │ │ │ │ ├── Sandbox │ │ │ │ └── SecurityError.php │ │ │ │ ├── Error │ │ │ │ ├── Runtime.php │ │ │ │ └── Syntax.php │ │ │ │ ├── TestCallableInterface.php │ │ │ │ ├── FilterCallableInterface.php │ │ │ │ └── FunctionCallableInterface.php │ │ ├── assets │ │ │ ├── images │ │ │ │ ├── btn.png │ │ │ │ ├── tab.png │ │ │ │ ├── loader.gif │ │ │ │ ├── calendar.png │ │ │ │ ├── div_vert.png │ │ │ │ ├── select2.png │ │ │ │ ├── spinner.gif │ │ │ │ ├── x_close.png │ │ │ │ ├── arrow_left.gif │ │ │ │ ├── arrow_right.gif │ │ │ │ ├── div_horiz.png │ │ │ │ ├── fuel_icons.png │ │ │ │ ├── fuel_logo.png │ │ │ │ ├── leftnav_on.png │ │ │ │ ├── markitup │ │ │ │ │ ├── h1.png │ │ │ │ │ ├── h2.png │ │ │ │ │ ├── h3.png │ │ │ │ │ ├── h4.png │ │ │ │ │ ├── h5.png │ │ │ │ │ ├── h6.png │ │ │ │ │ ├── bold.png │ │ │ │ │ ├── help.png │ │ │ │ │ ├── link.png │ │ │ │ │ ├── menu.png │ │ │ │ │ ├── clean.png │ │ │ │ │ ├── comment.png │ │ │ │ │ ├── email.png │ │ │ │ │ ├── handle.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── italic.png │ │ │ │ │ ├── picture.png │ │ │ │ │ ├── preview.png │ │ │ │ │ ├── stroke.png │ │ │ │ │ ├── submenu.png │ │ │ │ │ ├── bg-editor.png │ │ │ │ │ ├── list-item.png │ │ │ │ │ ├── maximize.png │ │ │ │ │ ├── minimize.png │ │ │ │ │ ├── paragraph.png │ │ │ │ │ ├── bg-container.png │ │ │ │ │ ├── list-bullet.png │ │ │ │ │ ├── list-numeric.png │ │ │ │ │ ├── bg-editor-html.png │ │ │ │ │ ├── bg-editor-json.png │ │ │ │ │ ├── bg-editor-wiki.png │ │ │ │ │ ├── bg-editor-xml.png │ │ │ │ │ ├── markitup_icons.png │ │ │ │ │ ├── bg-editor-bbcode.png │ │ │ │ │ ├── bg-editor-textile.png │ │ │ │ │ ├── page_white_code.png │ │ │ │ │ ├── bg-editor-dotclear.png │ │ │ │ │ ├── bg-editor-markdown.png │ │ │ │ │ ├── page_white_code_red.png │ │ │ │ │ └── text_horizontalrule.png │ │ │ │ ├── select2x2.png │ │ │ │ ├── spinner_sm.gif │ │ │ │ ├── icons │ │ │ │ │ ├── ico_add.png │ │ │ │ │ ├── ico_cog.png │ │ │ │ │ ├── ico_key.png │ │ │ │ │ ├── ico_accept.png │ │ │ │ │ ├── ico_cancel.png │ │ │ │ │ ├── ico_disk.png │ │ │ │ │ ├── ico_error.png │ │ │ │ │ ├── ico_fuel.png │ │ │ │ │ ├── ico_help.png │ │ │ │ │ ├── ico_house.png │ │ │ │ │ ├── ico_layout.png │ │ │ │ │ ├── ico_note.png │ │ │ │ │ ├── ico_pencil.png │ │ │ │ │ ├── ico_stop.png │ │ │ │ │ ├── ico_table.png │ │ │ │ │ ├── ico_user.png │ │ │ │ │ ├── ico_wrench.png │ │ │ │ │ ├── ico_comment.png │ │ │ │ │ ├── ico_email_go.png │ │ │ │ │ ├── ico_nav_list.png │ │ │ │ │ ├── ico_page_add.png │ │ │ │ │ ├── ico_page_red.png │ │ │ │ │ ├── ico_pictures.png │ │ │ │ │ ├── ico_sortable.png │ │ │ │ │ ├── ico_tag_blue.png │ │ │ │ │ ├── ico_book_open.png │ │ │ │ │ ├── ico_dashboard.png │ │ │ │ │ ├── ico_folder_page.png │ │ │ │ │ ├── ico_html_valid.png │ │ │ │ │ ├── ico_information.png │ │ │ │ │ ├── ico_page_copy.png │ │ │ │ │ ├── ico_page_delete.png │ │ │ │ │ ├── ico_page_excel.png │ │ │ │ │ ├── ico_page_green.png │ │ │ │ │ ├── ico_table_gear.png │ │ │ │ │ ├── ico_vcard_edit.png │ │ │ │ │ ├── ico_vert_tree.png │ │ │ │ │ ├── ico_world_link.png │ │ │ │ │ ├── ico_arrow_refresh.png │ │ │ │ │ ├── ico_control_play.png │ │ │ │ │ ├── ico_page_refresh.png │ │ │ │ │ ├── ico_pencil_delete.png │ │ │ │ │ ├── ico_picture_link.png │ │ │ │ │ ├── ico_sitemap_color.png │ │ │ │ │ ├── ico_status_online.png │ │ │ │ │ ├── ico_layout_content.png │ │ │ │ │ ├── ico_page_lightning.png │ │ │ │ │ ├── ico_page_white_code.png │ │ │ │ │ ├── ico_page_white_edit.png │ │ │ │ │ ├── ico_page_white_get.png │ │ │ │ │ ├── ico_page_white_put.png │ │ │ │ │ ├── ico_page_white_stack.png │ │ │ │ │ ├── ico_table_row_insert.png │ │ │ │ │ ├── ico_chart_organisation.png │ │ │ │ │ ├── ico_application_side_list.png │ │ │ │ │ ├── ico_application_view_tile.png │ │ │ │ │ └── ico_chart_organisation_add.png │ │ │ │ ├── select_arrow.gif │ │ │ │ ├── th_arrow_asc.png │ │ │ │ ├── th_arrow_desc.png │ │ │ │ ├── treeview │ │ │ │ │ ├── file.gif │ │ │ │ │ ├── plus.gif │ │ │ │ │ ├── folder.gif │ │ │ │ │ ├── minus.gif │ │ │ │ │ ├── treeview-red.gif │ │ │ │ │ ├── folder-closed.gif │ │ │ │ │ ├── treeview-black.gif │ │ │ │ │ ├── treeview-gray.gif │ │ │ │ │ ├── treeview-default.gif │ │ │ │ │ ├── treeview-red-line.gif │ │ │ │ │ ├── treeview-black-line.gif │ │ │ │ │ ├── treeview-famfamfam.gif │ │ │ │ │ ├── treeview-gray-line.gif │ │ │ │ │ ├── treeview-default-line.gif │ │ │ │ │ └── treeview-famfamfam-line.gif │ │ │ │ ├── select2-spinner.gif │ │ │ │ ├── toggle_arrow_down.png │ │ │ │ ├── toggle_arrow_right.png │ │ │ │ └── screens │ │ │ │ │ ├── articles_form.png │ │ │ │ │ ├── articles_tree.png │ │ │ │ │ ├── authors_form.png │ │ │ │ │ ├── screen_users.jpg │ │ │ │ │ ├── tags_create.png │ │ │ │ │ ├── inline_editing.jpg │ │ │ │ │ ├── manage_permissions.png │ │ │ │ │ ├── screen_dashboard.jpg │ │ │ │ │ ├── screen_page_edit.jpg │ │ │ │ │ ├── screen_pages_list.jpg │ │ │ │ │ ├── inline_editing_form.jpg │ │ │ │ │ ├── screen_inline_tools.jpg │ │ │ │ │ └── inline_editing_toolbar.jpg │ │ │ ├── css │ │ │ │ ├── images │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── select.png │ │ │ │ │ ├── select2.png │ │ │ │ │ ├── slider.png │ │ │ │ │ ├── custom_hex.png │ │ │ │ │ ├── custom_hsb_b.png │ │ │ │ │ ├── custom_hsb_h.png │ │ │ │ │ ├── custom_hsb_s.png │ │ │ │ │ ├── custom_indic.gif │ │ │ │ │ ├── custom_rgb_b.png │ │ │ │ │ ├── custom_rgb_g.png │ │ │ │ │ ├── custom_rgb_r.png │ │ │ │ │ ├── custom_submit.png │ │ │ │ │ ├── colorpicker_hex.png │ │ │ │ │ ├── colorpicker_hsb_b.png │ │ │ │ │ ├── colorpicker_hsb_h.png │ │ │ │ │ ├── colorpicker_hsb_s.png │ │ │ │ │ ├── colorpicker_indic.gif │ │ │ │ │ ├── colorpicker_rgb_b.png │ │ │ │ │ ├── colorpicker_rgb_g.png │ │ │ │ │ ├── colorpicker_rgb_r.png │ │ │ │ │ ├── custom_background.png │ │ │ │ │ ├── colorpicker_overlay.png │ │ │ │ │ ├── colorpicker_select.gif │ │ │ │ │ ├── colorpicker_submit.png │ │ │ │ │ ├── colorpicker_background.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_inset-soft_95_fef1ec_1x100.png │ │ │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ └── jquery.tooltip.css │ │ │ ├── docs │ │ │ │ ├── fuel_modules_example.zip │ │ │ │ └── fuel_modules_example │ │ │ │ │ └── config │ │ │ │ │ └── MY_fuel_modules.php │ │ │ ├── js │ │ │ │ ├── editors │ │ │ │ │ └── ckeditor │ │ │ │ │ │ ├── plugins │ │ │ │ │ │ ├── icons.png │ │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ │ ├── image │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ │ └── noimage.png │ │ │ │ │ │ ├── link │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ │ │ └── anchor.png │ │ │ │ │ │ ├── magicline │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ │ │ └── icon-rtl.png │ │ │ │ │ │ ├── about │ │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ │ ├── logo_ckeditor.png │ │ │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ └── dialog │ │ │ │ │ │ │ └── dialogDefinition.js │ │ │ │ │ │ └── skins │ │ │ │ │ │ └── moono │ │ │ │ │ │ ├── icons.png │ │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ │ └── images │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── refresh.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ ├── refresh.png │ │ │ │ │ │ └── lock-open.png │ │ │ │ └── fuel │ │ │ │ │ └── controller │ │ │ │ │ ├── LoginController.js │ │ │ │ │ └── ManageController.js │ │ │ └── cache │ │ │ │ └── index.html │ │ ├── config │ │ │ └── index.html │ │ ├── models │ │ │ └── index.html │ │ ├── controllers │ │ │ ├── index.html │ │ │ ├── Start.php │ │ │ ├── Tools.php │ │ │ └── Recent.php │ │ ├── language │ │ │ └── english │ │ │ │ └── index.html │ │ └── helpers │ │ │ └── index.html │ └── index.html ├── index.php └── codeigniter │ ├── fonts │ ├── texb.ttf │ └── index.html │ ├── .htaccess │ ├── index.html │ ├── core │ ├── index.html │ └── compat │ │ └── index.html │ ├── database │ ├── index.html │ └── drivers │ │ ├── index.html │ │ ├── cubrid │ │ └── index.html │ │ ├── ibase │ │ └── index.html │ │ ├── mssql │ │ └── index.html │ │ ├── mysql │ │ └── index.html │ │ ├── mysqli │ │ └── index.html │ │ ├── oci8 │ │ └── index.html │ │ ├── odbc │ │ └── index.html │ │ ├── pdo │ │ ├── index.html │ │ └── subdrivers │ │ │ └── index.html │ │ ├── sqlite │ │ └── index.html │ │ ├── sqlsrv │ │ └── index.html │ │ ├── postgre │ │ └── index.html │ │ └── sqlite3 │ │ └── index.html │ ├── helpers │ └── index.html │ ├── language │ ├── index.html │ └── english │ │ └── index.html │ └── libraries │ ├── index.html │ ├── Cache │ ├── index.html │ └── drivers │ │ └── index.html │ ├── Session │ ├── index.html │ └── drivers │ │ └── index.html │ └── javascript │ └── index.html ├── assets ├── js │ └── main.js ├── cache │ └── index.html ├── docs │ └── index.html ├── pdf │ └── index.html ├── swf │ └── index.html ├── images │ └── index.html └── css │ └── reset.css ├── robots.txt ├── .gitignore └── SECURITY.md /fuel/install/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /fuel/scripts/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /fuel/application/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /fuel/data_backup/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | 3 | }); 4 | -------------------------------------------------------------------------------- /fuel/application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /fuel/application/logs/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /fuel/ -------------------------------------------------------------------------------- /fuel/modules/fuel/views/_docs/_examples/forms.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fuel/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fuel/application/views/home.php: -------------------------------------------------------------------------------- 1 | load->module_view('app', '_install') ?> -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/VERSION: -------------------------------------------------------------------------------- 1 | 4.13.0 -------------------------------------------------------------------------------- /fuel/modules/fuel/views/_docs/libraries/my_model.php: -------------------------------------------------------------------------------- 1 | =generate_docs('MY_Model', 'core', 'fuel')?> -------------------------------------------------------------------------------- /fuel/application/views/_layouts/301_redirect.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fuel/application/views/_layouts/robots_txt.php: -------------------------------------------------------------------------------- 1 | 2 | =fuel_var('body')?> -------------------------------------------------------------------------------- /fuel/codeigniter/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/codeigniter/fonts/texb.ttf -------------------------------------------------------------------------------- /fuel/modules/fuel/views/_generate/advanced/config/{module}_routes.php: -------------------------------------------------------------------------------- 1 | Click here for your site documentation.
-------------------------------------------------------------------------------- /fuel/modules/fuel/views/_generate/advanced/assets/css/{module}.css: -------------------------------------------------------------------------------- 1 | .ico_{module} { background-image: url(../images/ico_cog.png); } -------------------------------------------------------------------------------- /fuel/modules/fuel/views/_generate/advanced/language/english/{module}_lang.php: -------------------------------------------------------------------------------- 1 | 2 | =$more_filters?> 3 | -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/loader.gif -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/calendar.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/div_vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/div_vert.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/select2.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/spinner.gif -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/x_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/x_close.png -------------------------------------------------------------------------------- /fuel/application/views/offline.php: -------------------------------------------------------------------------------- 1 | 2 |Please try again later.
-------------------------------------------------------------------------------- /fuel/modules/fuel/assets/css/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/css/images/blank.gif -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/css/images/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/css/images/select.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/css/images/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/css/images/select2.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/css/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/css/images/slider.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/arrow_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/arrow_left.gif -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/arrow_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/arrow_right.gif -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/div_horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/div_horiz.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/fuel_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/fuel_icons.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/fuel_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/fuel_logo.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/leftnav_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/leftnav_on.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/markitup/h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/markitup/h1.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/markitup/h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/markitup/h2.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/markitup/h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/markitup/h3.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/markitup/h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/markitup/h4.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/markitup/h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/markitup/h5.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/markitup/h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/markitup/h6.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/select2x2.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/spinner_sm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/spinner_sm.gif -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/icons/ico_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/icons/ico_add.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/icons/ico_cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/icons/ico_cog.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/icons/ico_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/icons/ico_key.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/markitup/bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/markitup/bold.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/markitup/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/markitup/help.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/markitup/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/markitup/link.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/markitup/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/markitup/menu.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/select_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/select_arrow.gif -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/th_arrow_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/th_arrow_asc.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/th_arrow_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/th_arrow_desc.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/treeview/file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/treeview/file.gif -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/treeview/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/treeview/plus.gif -------------------------------------------------------------------------------- /fuel/application/core/MY_Hooks.php: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 |=lang('replace_item_message')?>
3 | =$form?> 4 | -------------------------------------------------------------------------------- /assets/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/pdf/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/swf/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /fuel/application/core/MY_DB_mysql_driver.php: -------------------------------------------------------------------------------- 1 | My Helper 2 |This helper is automatically loaded. Site specific functions should be placed in this helper file.
-------------------------------------------------------------------------------- /fuel/modules/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/images/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /fuel/application/core/MY_DB_mysqli_driver.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 |