├── 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 | -------------------------------------------------------------------------------- /fuel/application/views/_layouts/301_redirect.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fuel/application/views/_layouts/robots_txt.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /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 | 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 |

The site is currently offline.

3 |

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 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/css/images/custom_hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/css/images/custom_hex.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/css/images/custom_hsb_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/css/images/custom_hsb_b.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/css/images/custom_hsb_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/css/images/custom_hsb_h.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/css/images/custom_hsb_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/css/images/custom_hsb_s.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/css/images/custom_indic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/css/images/custom_indic.gif -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/css/images/custom_rgb_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/css/images/custom_rgb_b.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/css/images/custom_rgb_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/css/images/custom_rgb_g.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/css/images/custom_rgb_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/css/images/custom_rgb_r.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/icons/ico_accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/icons/ico_accept.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/icons/ico_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/icons/ico_cancel.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/icons/ico_disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/icons/ico_disk.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/icons/ico_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/icons/ico_error.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/icons/ico_fuel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/icons/ico_fuel.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/icons/ico_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/icons/ico_help.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/icons/ico_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/icons/ico_house.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/icons/ico_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/icons/ico_layout.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/icons/ico_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/icons/ico_note.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/icons/ico_pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/icons/ico_pencil.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/icons/ico_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/icons/ico_stop.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/icons/ico_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/icons/ico_table.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/icons/ico_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/icons/ico_user.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/icons/ico_wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/icons/ico_wrench.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/markitup/clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/markitup/clean.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/markitup/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/markitup/comment.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/markitup/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/markitup/email.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/markitup/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/markitup/handle.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/markitup/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/markitup/image.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/markitup/italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/markitup/italic.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/markitup/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/markitup/picture.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/markitup/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/markitup/preview.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/markitup/stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/markitup/stroke.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/markitup/submenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/markitup/submenu.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/select2-spinner.gif -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/treeview/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/treeview/folder.gif -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/treeview/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/treeview/minus.gif -------------------------------------------------------------------------------- /fuel/application/core/MY_Model.php: -------------------------------------------------------------------------------- 1 | 2 |

3 | 4 | -------------------------------------------------------------------------------- /assets/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

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 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

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

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /fuel/application/core/MY_DB_mysqli_driver.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

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

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/css/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/css/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/css/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/css/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/css/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/css/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/css/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/css/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/css/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/css/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/icons/ico_chart_organisation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/icons/ico_chart_organisation.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/markitup/bg-editor-dotclear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/markitup/bg-editor-dotclear.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/markitup/bg-editor-markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/markitup/bg-editor-markdown.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/markitup/page_white_code_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/markitup/page_white_code_red.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/markitup/text_horizontalrule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/markitup/text_horizontalrule.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/screens/inline_editing_form.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/screens/inline_editing_form.jpg -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/screens/screen_inline_tools.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/screens/screen_inline_tools.jpg -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/treeview/treeview-black-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/treeview/treeview-black-line.gif -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/treeview/treeview-famfamfam.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/treeview/treeview-famfamfam.gif -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/treeview/treeview-gray-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/treeview/treeview-gray-line.gif -------------------------------------------------------------------------------- /fuel/application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /fuel/application/libraries/MY_DB_mysqli_utility.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

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

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/css/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/css/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/css/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/css/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/css/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/css/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/css/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/css/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/css/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/css/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/css/images/ui-bg_glass_75_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/css/images/ui-bg_glass_75_ffffff_1x400.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/icons/ico_application_side_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/icons/ico_application_side_list.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/icons/ico_application_view_tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/icons/ico_application_view_tile.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/screens/inline_editing_toolbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/screens/inline_editing_toolbar.jpg -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/treeview/treeview-default-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/treeview/treeview-default-line.gif -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/js/editors/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/js/editors/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /fuel/application/cache/dwoo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /fuel/install/upgrades/fuel_1.2_schema_changes.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `fuel_navigation` DROP INDEX `group_id`; 2 | ALTER TABLE `fuel_navigation` ADD UNIQUE INDEX (`group_id`, `nav_key`, `language`); 3 | -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/icons/ico_chart_organisation_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/icons/ico_chart_organisation_add.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/images/treeview/treeview-famfamfam-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/images/treeview/treeview-famfamfam-line.gif -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/js/editors/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/js/editors/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /fuel/modules/fuel/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/_generate/advanced/assets/images/ico_cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/views/_generate/advanced/assets/images/ico_cog.png -------------------------------------------------------------------------------- /fuel/modules/fuel/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /fuel/application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/css/images/ui-bg_inset-soft_95_fef1ec_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/css/images/ui-bg_inset-soft_95_fef1ec_1x100.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/js/editors/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/js/editors/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/js/editors/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/js/editors/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /fuel/modules/fuel/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /fuel/application/cache/dwoo/compiled/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

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

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /fuel/application/views/errors/cli/error_general.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/manage/settings.php: -------------------------------------------------------------------------------- 1 |
2 |

Settings

3 | 4 |
5 | 6 |
7 |
-------------------------------------------------------------------------------- /fuel/application/views/errors/cli/error_db.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/js/editors/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/js/editors/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/js/editors/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/js/editors/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/js/editors/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/js/editors/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /fuel/modules/fuel/views/_generate/advanced/views/_admin/{module}.php: -------------------------------------------------------------------------------- 1 |
2 |

This view is located in the fuel/modules/{module}/views/_admin/ folder.

3 |
-------------------------------------------------------------------------------- /fuel/application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/js/editors/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/js/editors/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/js/editors/ckeditor/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/js/editors/ckeditor/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/js/editors/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/js/editors/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier.composer.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/_blocks/fuel_top.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |

fuel->config('site_name')?>

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/js/editors/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/js/editors/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/js/editors/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/js/editors/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/js/editors/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/js/editors/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /fuel/modules/fuel/views/_docs/libraries/simplepie.php: -------------------------------------------------------------------------------- 1 |

SimplePie

2 |

FUEL uses the popular SimplePie library to include 3 | RSS information into its Dashboard.

-------------------------------------------------------------------------------- /fuel/application/views/errors/cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Serializer/README: -------------------------------------------------------------------------------- 1 | This is a dummy file to prevent Git from ignoring this empty directory. 2 | 3 | vim: et sw=4 sts=4 4 | -------------------------------------------------------------------------------- /fuel/codeigniter/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/js/editors/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/js/editors/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /fuel/application/core/MY_Loader.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 403 Forbidden 6 | 7 | 8 | 9 | 10 | 11 |

Directory access is forbidden.

12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /fuel/codeigniter/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/js/editors/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daylightstudio/FUEL-CMS/HEAD/fuel/modules/fuel/assets/js/editors/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/js/editors/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /fuel/modules/fuel/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 403 Forbidden 6 | 7 | 8 | 9 | 10 | 11 |

Directory access is forbidden.

12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/_generate/advanced/config/{module}_constants.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /fuel/application/helpers/my_helper.php: -------------------------------------------------------------------------------- 1 | Activity Log 2 |

FUEL keeps track of the activity in the system under the Activity Log. This information may be useful for debugging purposes. It also 3 | provides recent activity on the dashboard.

-------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/composer.json: -------------------------------------------------------------------------------- 1 | {"name":"dummy app","description":"This app is only a dummy for downloading with the option require.","homepage":"https://php-download.com/","type":"project","require":{"xemlock/htmlpurifier-html5":"^0.1.11.0"}} -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/autoload.php: -------------------------------------------------------------------------------- 1 | {module_name} Module Documentation 2 |

This {module_name} module documentation is for version .

3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.IDBlacklist.txt: -------------------------------------------------------------------------------- 1 | Attr.IDBlacklist 2 | TYPE: list 3 | DEFAULT: array() 4 | DESCRIPTION: Array of IDs not allowed in the document. 5 | --# vim: et sw=4 sts=4 6 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.js: -------------------------------------------------------------------------------- 1 | function toggleWriteability(id_of_patient, checked) { 2 | document.getElementById(id_of_patient).disabled = checked; 3 | } 4 | 5 | // vim: et sw=4 sts=4 6 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/_docs/libraries/unzip.php: -------------------------------------------------------------------------------- 1 |

Unzip Class

2 |

FUEL CMS uses Phil Sturgeon's Unzip class for 3 | decompressing zipped asset files... plus it's just handy to have.

-------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | Security updates are first pushed to the develop branch and then merged into the master branch upon release to the latest version. 4 | 5 | To report a vulnerability, please email info@getfuelcms.com instead of reporting it as an issue. 6 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/_generate/simple/MY_fuel_modules.php: -------------------------------------------------------------------------------- 1 | $config['modules']['{module}'] = array( 2 | 'preview_path' => '', // put in the preview path on the site e.g products/{slug} 3 | 'model_location' => '{advanced_module}', // put in the advanced module name here 4 | ); 5 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/_docs/general/license.php: -------------------------------------------------------------------------------- 1 |

License

2 |

FUEL CMS is released under the Apache License v2.0. You can read the license here: 3 | http://www.apache.org/licenses/LICENSE-2.0

4 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/my_profile.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |

4 | 5 |
6 | 7 |
8 | 9 |
10 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Token/Start.php: -------------------------------------------------------------------------------- 1 | MY_parser Class 2 |

FUEL CMS uses Phil Sturgeon's extended Parser class so 3 | that the Dwoo templating engine could easily integrate.

-------------------------------------------------------------------------------- /fuel/modules/fuel/views/_docs/installation/configuration.php: -------------------------------------------------------------------------------- 1 |

Configuring FUEL CMS

2 |

The following are the main configuration options that you can set for FUEL. 3 | They can be overwritten in the application/config/MY_fuel.php file:

4 | -------------------------------------------------------------------------------- /fuel/modules/fuel/controllers/Start.php: -------------------------------------------------------------------------------- 1 | fuel->config('login_redirect')); 13 | } 14 | } -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Nofollow.txt: -------------------------------------------------------------------------------- 1 | HTML.Nofollow 2 | TYPE: bool 3 | VERSION: 4.3.0 4 | DEFAULT: FALSE 5 | --DESCRIPTION-- 6 | If enabled, nofollow rel attributes are added to all outgoing links. 7 | --# vim: et sw=4 sts=4 8 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/_docs/installation/db-setup.php: -------------------------------------------------------------------------------- 1 |

Setting Up the Database

2 |

FUEL uses a MySQL database (it has not been testing on other databases). It uses the standard CodeIgniter database config.

-------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TidyAdd.txt: -------------------------------------------------------------------------------- 1 | HTML.TidyAdd 2 | TYPE: lookup 3 | VERSION: 2.0.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | 7 | Fixes to add to the default set of Tidy fixes as per your level. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/_docs/libraries/cache.php: -------------------------------------------------------------------------------- 1 |

Cache

2 |

The Cache library used by FUEL, 3 | was developed by Al James 4 | and allows for greater control of caching files beyond CodeIgniter's 5 | Caching class.

-------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php: -------------------------------------------------------------------------------- 1 | load->view('_blocks/header')?> 2 | 3 |
4 |
5 |

6 | 7 |
8 |
9 | 10 | load->view('_blocks/footer')?> 11 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php: -------------------------------------------------------------------------------- 1 | load->view('_blocks/header')?> 2 | 3 |
4 | 5 |
6 | 7 | load->view('_blocks/footer')?> 8 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Exception.php: -------------------------------------------------------------------------------- 1 | 8 | Whether or not to allow safe, proprietary CSS values. 9 |

10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/_docs/libraries/my_hooks.php: -------------------------------------------------------------------------------- 1 |

MY_Hooks Class

2 |

The MY_Hooks class extends the native CI Hooks class so that we could include the module name in the configuration as well 3 | as pass additional parameter when calling the hook.

-------------------------------------------------------------------------------- /fuel/modules/fuel/views/_docs/libraries/my_typography.php: -------------------------------------------------------------------------------- 1 |

MY_Typography Class

2 |

This extended class just contains a minor adjustment to the auto_typography to escape templating syntax so it can be properly parsed. 3 | The escaping happens by default but if you do want to escape the quote, set a third parameter to FALSE.

-------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/ezyang/htmlpurifier/library'), 10 | ); 11 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Test.ForceNoIconv.txt: -------------------------------------------------------------------------------- 1 | Test.ForceNoIconv 2 | TYPE: bool 3 | DEFAULT: false 4 | --DESCRIPTION-- 5 | When set to true, HTMLPurifier_Encoder will act as if iconv does not exist 6 | and use only pure PHP implementations. 7 | --# vim: et sw=4 sts=4 8 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidTags.txt: -------------------------------------------------------------------------------- 1 | Core.EscapeInvalidTags 2 | TYPE: bool 3 | DEFAULT: false 4 | --DESCRIPTION-- 5 | When true, invalid tags will be written back to the document as plain text. 6 | Otherwise, they are silently dropped. 7 | --# vim: et sw=4 sts=4 8 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/_blocks/module_list_table.php: -------------------------------------------------------------------------------- 1 | 2 | form->hidden('offset', $params['offset'])?> 3 | form->hidden('order', $params['order'])?> 4 | form->hidden('col', $params['col'])?> 5 | 6 | form->hidden('precedence', $params['precedence'])?> 7 | -------------------------------------------------------------------------------- /fuel/application/views/_admin/_fuel_preview.php: -------------------------------------------------------------------------------- 1 | '.markdown(strip_javascript($preview_body)).''; 4 | $vars['body'] = '
'.$preview_body.'
'; 5 | $this->load->view('_layouts/main', $vars); 6 | //echo $preview_body; 7 | ?> -------------------------------------------------------------------------------- /fuel/application/views/_layouts/alias.php: -------------------------------------------------------------------------------- 1 | fuel->pages->render($alias, array(), array('render_mode' => 'cms'), TRUE); 4 | // show 404 if output is explicitly set to FALSE 5 | if ($output === FALSE) 6 | { 7 | // do any redirects... will exit script if any 8 | redirect_404(); 9 | } 10 | echo $output; 11 | ?> -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.DefinitionRev.txt: -------------------------------------------------------------------------------- 1 | CSS.DefinitionRev 2 | TYPE: int 3 | VERSION: 2.0.0 4 | DEFAULT: 1 5 | --DESCRIPTION-- 6 | 7 |

8 | Revision identifier for your custom definition. See 9 | %HTML.DefinitionRev for details. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DefinitionRev.txt: -------------------------------------------------------------------------------- 1 | URI.DefinitionRev 2 | TYPE: int 3 | VERSION: 2.1.0 4 | DEFAULT: 1 5 | --DESCRIPTION-- 6 | 7 |

8 | Revision identifier for your custom definition. See 9 | %HTML.DefinitionRev for details. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier.composer.php', 10 | ); 11 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.AllowedClasses.txt: -------------------------------------------------------------------------------- 1 | Attr.AllowedClasses 2 | TYPE: lookup/null 3 | VERSION: 4.0.0 4 | DEFAULT: null 5 | --DESCRIPTION-- 6 | List of allowed class values in the class attribute. By default, this is null, 7 | which means all classes are allowed. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier.path.php: -------------------------------------------------------------------------------- 1 | Server Requirements 2 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowImportant.txt: -------------------------------------------------------------------------------- 1 | CSS.AllowImportant 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 3.1.0 5 | --DESCRIPTION-- 6 | This parameter determines whether or not !important cascade modifiers should 7 | be allowed in user CSS. If false, !important will stripped. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/js/fuel/controller/LoginController.js: -------------------------------------------------------------------------------- 1 | jqx.load('plugin', 'jquery.placeholder'); 2 | 3 | fuel.controller.LoginController = jqx.lib.BaseController.extend({ 4 | 5 | init: function(initObj){ 6 | fuel.controller.BaseFuelController.prototype.notifications.call(this); 7 | $('#user_name').focus(); 8 | $('input').placeholder(); 9 | this._super(initObj); 10 | } 11 | }); -------------------------------------------------------------------------------- /fuel/modules/fuel/views/_docs/general/contribute.php: -------------------------------------------------------------------------------- 1 |

Contribute

2 |

If you find this project useful and want it to succeed, please consider 3 | contributing your time, energy and/or wisdom by regarding how 4 | you want to contribute or simply by sending us your suggestions, feedback and bugs (with hopefully a way to fix :-).

-------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.CustomDoctype.txt: -------------------------------------------------------------------------------- 1 | HTML.CustomDoctype 2 | TYPE: string/null 3 | VERSION: 2.0.1 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 | A custom doctype for power-users who defined their own document 8 | type. This directive only applies when %HTML.Doctype is blank. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TargetBlank.txt: -------------------------------------------------------------------------------- 1 | HTML.TargetBlank 2 | TYPE: bool 3 | VERSION: 4.4.0 4 | DEFAULT: FALSE 5 | --DESCRIPTION-- 6 | If enabled, target=blank attributes are added to all outgoing links. 7 | (This includes links from an HTTPS version of a page to an HTTP version.) 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.XHTML.txt: -------------------------------------------------------------------------------- 1 | HTML.XHTML 2 | TYPE: bool 3 | DEFAULT: true 4 | VERSION: 1.1.0 5 | DEPRECATED-VERSION: 1.7.0 6 | DEPRECATED-USE: HTML.Doctype 7 | --DESCRIPTION-- 8 | Determines whether or not output is XHTML 1.0 or HTML 4.01 flavor. 9 | --ALIASES-- 10 | Core.XHTML 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.Trusted.txt: -------------------------------------------------------------------------------- 1 | CSS.Trusted 2 | TYPE: bool 3 | VERSION: 4.2.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | Indicates whether or not the user's CSS input is trusted or not. If the 7 | input is trusted, a more expansive set of allowed properties. See 8 | also %HTML.Trusted. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/js/fuel/controller/ManageController.js: -------------------------------------------------------------------------------- 1 | fuel.controller.ManageController = jqx.createController(fuel.controller.BaseFuelController, { 2 | 3 | init: function(initObj){ 4 | this.notifications(); 5 | this._submit(); 6 | this._super(initObj); 7 | }, 8 | 9 | activity: function(){ 10 | this.tableAjaxURL = jqx.config.fuelPath + '/manage/activity'; 11 | this.items(); 12 | } 13 | }); -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier.auto.php: -------------------------------------------------------------------------------- 1 | 8 | Unique identifier for a custom-built URI definition. If you want 9 | to add custom URIFilters, you must specify this value. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.AllowedRev.txt: -------------------------------------------------------------------------------- 1 | Attr.AllowedRev 2 | TYPE: lookup 3 | VERSION: 1.6.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | List of allowed reverse document relationships in the rev attribute. This 7 | attribute is a bit of an edge-case; if you don't know what it is for, stay 8 | away. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.ForbiddenClasses.txt: -------------------------------------------------------------------------------- 1 | Attr.ForbiddenClasses 2 | TYPE: lookup 3 | VERSION: 4.0.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | List of forbidden class values in the class attribute. By default, this is 7 | empty, which means that no classes are forbidden. See also %Attr.AllowedClasses. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Token/Empty.php: -------------------------------------------------------------------------------- 1 | empty = true; 11 | return $n; 12 | } 13 | } 14 | 15 | // vim: et sw=4 sts=4 16 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/dwoo/dwooAutoload.php: -------------------------------------------------------------------------------- 1 | db->load_sql($file_path); 10 | } 11 | 12 | public function down() 13 | { 14 | } 15 | } -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload-legacy.php: -------------------------------------------------------------------------------- 1 | 7 | Whether or not to permit script tags to external scripts in documents. 8 | Inline scripting is not allowed, and the script must match an explicit whitelist. 9 |

10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.FlashCompat.txt: -------------------------------------------------------------------------------- 1 | Output.FlashCompat 2 | TYPE: bool 3 | VERSION: 4.1.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | If true, HTML Purifier will generate Internet Explorer compatibility 8 | code for all object code. This is highly recommended if you enable 9 | %HTML.SafeObject. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/CREDITS: -------------------------------------------------------------------------------- 1 | 2 | CREDITS 3 | 4 | Almost everything written by Edward Z. Yang (Ambush Commander). Lots of thanks 5 | to the DevNetwork Community for their help (see docs/ref-devnetwork.html for 6 | more details), Feyd especially (namely IPv6 and optimization). Thanks to RSnake 7 | for letting me package his fantastic XSS cheatsheet for a smoketest. 8 | 9 | vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.AllowedRel.txt: -------------------------------------------------------------------------------- 1 | Attr.AllowedRel 2 | TYPE: lookup 3 | VERSION: 1.6.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | List of allowed forward document relationships in the rel attribute. Common 7 | values may be nofollow or print. By default, this is empty, meaning that no 8 | document relationships are allowed. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.Linkify.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.Linkify 2 | TYPE: bool 3 | VERSION: 2.0.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

8 | This directive turns on linkification, auto-linking http, ftp and 9 | https URLs. a tags with the href attribute 10 | must be allowed. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowDuplicates.txt: -------------------------------------------------------------------------------- 1 | CSS.AllowDuplicates 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 4.8.0 5 | --DESCRIPTION-- 6 |

7 | By default, HTML Purifier removes duplicate CSS properties, 8 | like color:red; color:blue. If this is set to 9 | true, duplicate properties are allowed. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TargetNoreferrer.txt: -------------------------------------------------------------------------------- 1 | HTML.TargetNoreferrer 2 | TYPE: bool 3 | VERSION: 4.8.0 4 | DEFAULT: TRUE 5 | --DESCRIPTION-- 6 | If enabled, noreferrer rel attributes are added to links which have 7 | a target attribute associated with them. This prevents malicious 8 | destinations from overwriting the original window. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.CommentScriptContents.txt: -------------------------------------------------------------------------------- 1 | Output.CommentScriptContents 2 | TYPE: bool 3 | VERSION: 2.0.0 4 | DEFAULT: true 5 | --DESCRIPTION-- 6 | Determines whether or not HTML Purifier should attempt to fix up the 7 | contents of script tags for legacy browsers with comments. 8 | --ALIASES-- 9 | Core.CommentScriptContents 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.Disable.txt: -------------------------------------------------------------------------------- 1 | URI.Disable 2 | TYPE: bool 3 | VERSION: 1.3.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

8 | Disables all URIs in all forms. Not sure why you'd want to do that 9 | (after all, the Internet's founded on the notion of a hyperlink). 10 |

11 | 12 | --ALIASES-- 13 | Attr.DisableURI 14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.css: -------------------------------------------------------------------------------- 1 | 2 | .hp-config {} 3 | 4 | .hp-config tbody th {text-align:right; padding-right:0.5em;} 5 | .hp-config thead, .hp-config .namespace {background:#3C578C; color:#FFF;} 6 | .hp-config .namespace th {text-align:center;} 7 | .hp-config .verbose {display:none;} 8 | .hp-config .controls {text-align:center;} 9 | 10 | /* vim: et sw=4 sts=4 */ 11 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.Language.txt: -------------------------------------------------------------------------------- 1 | Core.Language 2 | TYPE: string 3 | VERSION: 2.0.0 4 | DEFAULT: 'en' 5 | --DESCRIPTION-- 6 | 7 | ISO 639 language code for localizable things in HTML Purifier to use, 8 | which is mainly error reporting. There is currently only an English (en) 9 | translation, so this directive is currently useless. 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.NormalizeNewlines.txt: -------------------------------------------------------------------------------- 1 | Core.NormalizeNewlines 2 | TYPE: bool 3 | VERSION: 4.2.0 4 | DEFAULT: true 5 | --DESCRIPTION-- 6 |

7 | Whether or not to normalize newlines to the operating 8 | system default. When false, HTML Purifier 9 | will attempt to preserve mixed newline files. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImageAlt.txt: -------------------------------------------------------------------------------- 1 | Attr.DefaultInvalidImageAlt 2 | TYPE: string 3 | DEFAULT: 'Invalid image' 4 | --DESCRIPTION-- 5 | This is the content of the alt tag of an invalid image if the user had not 6 | previously specified an alt attribute. It has no effect when the image is 7 | valid but there was no alt attribute present. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultTextDir.txt: -------------------------------------------------------------------------------- 1 | Attr.DefaultTextDir 2 | TYPE: string 3 | DEFAULT: 'ltr' 4 | --DESCRIPTION-- 5 | Defines the default text direction (ltr or rtl) of the document being 6 | parsed. This generally is the same as the value of the dir attribute in 7 | HTML, or ltr if that is not specified. 8 | --ALLOWED-- 9 | 'ltr', 'rtl' 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.EnableIDNA.txt: -------------------------------------------------------------------------------- 1 | Core.EnableIDNA 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 4.4.0 5 | --DESCRIPTION-- 6 | Allows international domain names in URLs. This configuration option 7 | requires the PEAR Net_IDNA2 module to be installed. It operates by 8 | punycoding any internationalized host names for maximum portability. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/modal_select.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 |
5 |
6 | 10 |
11 |
12 |
13 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveScriptContents.txt: -------------------------------------------------------------------------------- 1 | Core.RemoveScriptContents 2 | TYPE: bool/null 3 | DEFAULT: NULL 4 | VERSION: 2.0.0 5 | DEPRECATED-VERSION: 2.1.0 6 | DEPRECATED-USE: Core.HiddenElements 7 | --DESCRIPTION-- 8 |

9 | This directive enables HTML Purifier to remove not only script tags 10 | but all of their contents. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.FlashAllowFullScreen.txt: -------------------------------------------------------------------------------- 1 | HTML.FlashAllowFullScreen 2 | TYPE: bool 3 | VERSION: 4.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Whether or not to permit embedded Flash content from 8 | %HTML.SafeObject to expand to the full screen. Corresponds to 9 | the allowFullScreen parameter. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/dwoo/Dwoo/Adapters/CodeIgniter/controllers/dwoowelcome.php: -------------------------------------------------------------------------------- 1 | load->library('Dwootemplate'); 13 | $this->dwootemplate->assign('itshowlate', date('H:i:s')); 14 | $this->dwootemplate->display('dwoowelcome.tpl'); 15 | } 16 | } -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.HostBlacklist.txt: -------------------------------------------------------------------------------- 1 | URI.HostBlacklist 2 | TYPE: list 3 | VERSION: 1.3.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | List of strings that are forbidden in the host of any URI. Use it to kill 7 | domain names of spam, etc. Note that it will catch anything in the domain, 8 | so moo.com will catch moo.com.example.com. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php: -------------------------------------------------------------------------------- 1 | 16 | */ 17 | class Twig_Node_Body extends Twig_Node 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.Custom.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.Custom 2 | TYPE: list 3 | VERSION: 2.0.1 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | 7 |

8 | This directive can be used to add custom auto-format injectors. 9 | Specify an array of injector names (class name minus the prefix) 10 | or concrete implementations. Injector class must exist. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.Custom.txt: -------------------------------------------------------------------------------- 1 | Filter.Custom 2 | TYPE: list 3 | VERSION: 3.1.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 |

7 | This directive can be used to add custom filters; it is nearly the 8 | equivalent of the now deprecated HTMLPurifier->addFilter() 9 | method. Specify an array of concrete implementations. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TargetNoopener.txt: -------------------------------------------------------------------------------- 1 | --# vim: et sw=4 sts=4 2 | HTML.TargetNoopener 3 | TYPE: bool 4 | VERSION: 4.8.0 5 | DEFAULT: TRUE 6 | --DESCRIPTION-- 7 | If enabled, noopener rel attributes are added to links which have 8 | a target attribute associated with them. This prevents malicious 9 | destinations from overwriting the original window. 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIScheme/https.php: -------------------------------------------------------------------------------- 1 | is_published()) : ?> 6 |
7 |
8 | This post is currently not published and is only viewable to you because you are currently logged into FUEL. 9 |
10 |
11 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.IDBlacklistRegexp.txt: -------------------------------------------------------------------------------- 1 | Attr.IDBlacklistRegexp 2 | TYPE: string/null 3 | VERSION: 1.6.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | PCRE regular expression to be matched against all IDs. If the expression is 7 | matches, the ID is rejected. Use this with care: may cause significant 8 | degradation. ID matching is done after all other validation. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Parent.txt: -------------------------------------------------------------------------------- 1 | HTML.Parent 2 | TYPE: string 3 | VERSION: 1.3.0 4 | DEFAULT: 'div' 5 | --DESCRIPTION-- 6 | 7 |

8 | String name of element that HTML fragment passed to library will be 9 | inserted in. An interesting variation would be using span as the 10 | parent element, meaning that only inline tags would be allowed. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/modules/module_close_modal.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImage.txt: -------------------------------------------------------------------------------- 1 | Attr.DefaultInvalidImage 2 | TYPE: string 3 | DEFAULT: '' 4 | --DESCRIPTION-- 5 | This is the default image an img tag will be pointed to if it does not have 6 | a valid src attribute. In future versions, we may allow the image tag to 7 | be removed completely, but due to design issues, this is not possible right 8 | now. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveSpansWithoutAttributes.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.RemoveSpansWithoutAttributes 2 | TYPE: bool 3 | VERSION: 4.0.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | This directive causes span tags without any attributes 8 | to be removed. It will also remove spans that had all attributes 9 | removed during processing. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /fuel/install/upgrades/fuel_1.3_schema_changes.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `fuel_categories` ADD `language` VARCHAR(30) NOT NULL DEFAULT 'english' AFTER `context`; 2 | ALTER TABLE `fuel_categories` ADD `description` TEXT NOT NULL AFTER `slug`; 3 | ALTER TABLE `fuel_tags` ADD `language` VARCHAR(30) NOT NULL DEFAULT 'english' AFTER `slug`; 4 | ALTER TABLE `fuel_tags` ADD `description` TEXT NOT NULL AFTER `slug`; 5 | ALTER TABLE `fuel_tags` ADD `context` VARCHAR(100) NOT NULL DEFAULT '' AFTER `description`; 6 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.DisplayLinkURI.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.DisplayLinkURI 2 | TYPE: bool 3 | VERSION: 3.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | This directive turns on the in-text display of URIs in <a> tags, and disables 8 | those links. For example, example becomes 9 | example (http://example.com). 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.PurifierLinkify 2 | TYPE: bool 3 | VERSION: 2.0.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

8 | Internal auto-formatter that converts configuration directives in 9 | syntax %Namespace.Directive to links. a tags 10 | with the href attribute must be allowed. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Forms.txt: -------------------------------------------------------------------------------- 1 | HTML.Forms 2 | TYPE: bool 3 | VERSION: 4.13.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Whether or not to permit form elements in the user input, regardless of 8 | %HTML.Trusted value. Please be very careful when using this functionality, as 9 | enabling forms in untrusted documents may allow for phishing attacks. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.OverrideAllowedSchemes.txt: -------------------------------------------------------------------------------- 1 | URI.OverrideAllowedSchemes 2 | TYPE: bool 3 | DEFAULT: true 4 | --DESCRIPTION-- 5 | If this is set to true (which it is by default), you can override 6 | %URI.AllowedSchemes by simply registering a HTMLPurifier_URIScheme to the 7 | registry. If false, you will also have to update that directive in order 8 | to add more schemes. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/Twig/NodeOutputInterface.php: -------------------------------------------------------------------------------- 1 | 16 | */ 17 | interface Twig_NodeOutputInterface 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/manage/my_modules.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 | 12 |
13 | 14 |
15 | 16 | 17 |
18 | -------------------------------------------------------------------------------- /fuel/modules/fuel/assets/docs/fuel_modules_example/config/MY_fuel_modules.php: -------------------------------------------------------------------------------- 1 | 7 | This directive allows parsing of many nested tags. 8 | If you set true, relaxes any hardcoded limit from the parser. 9 | However, in that case it may cause a Dos attack. 10 | Be careful when enabling it. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/manage/cache.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |

4 | 5 |
6 | 10 |
11 | 12 | form->hidden('action', 'cache')?> 13 | 14 |
-------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Proprietary.txt: -------------------------------------------------------------------------------- 1 | HTML.Proprietary 2 | TYPE: bool 3 | VERSION: 3.1.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Whether or not to allow proprietary elements and attributes in your 8 | documents, as per HTMLPurifier_HTMLModule_Proprietary. 9 | Warning: This can cause your documents to stop 10 | validating! 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/upload.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |

4 | 5 | 6 |
7 |
8 | 9 |
10 | 14 |
15 | 16 | 17 |
18 | 19 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPath.txt: -------------------------------------------------------------------------------- 1 | Cache.SerializerPath 2 | TYPE: string/null 3 | VERSION: 2.0.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

8 | Absolute path with no trailing slash to store serialized definitions in. 9 | Default is within the 10 | HTML Purifier library inside DefinitionCache/Serializer. This 11 | path must be writable by the webserver. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveInvalidImg.txt: -------------------------------------------------------------------------------- 1 | Core.RemoveInvalidImg 2 | TYPE: bool 3 | DEFAULT: true 4 | VERSION: 1.3.0 5 | --DESCRIPTION-- 6 | 7 |

8 | This directive enables pre-emptive URI checking in img 9 | tags, as the attribute validation strategy is not authorized to 10 | remove elements from the document. Revert to pre-1.3.0 behavior by setting to false. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/_generate/advanced/assets/js/{ModuleName}Controller.js: -------------------------------------------------------------------------------- 1 | // jqx.load('plugin', 'date'); 2 | 3 | {ModuleName}Controller = jqx.createController(fuel.controller.BaseFuelController, { 4 | 5 | init: function(initObj){ 6 | this._super(initObj); 7 | }, 8 | 9 | add_edit : function(){ 10 | var _this = this; 11 | // do this first so that the fillin is in the checksaved value 12 | //fuel.controller.BaseFuelController.prototype.add_edit.call(this, false); 13 | this._super(); 14 | } 15 | }); -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.DocURL.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.PurifierLinkify.DocURL 2 | TYPE: string 3 | VERSION: 2.0.1 4 | DEFAULT: '#%s' 5 | ALIASES: AutoFormatParam.PurifierLinkifyDocURL 6 | --DESCRIPTION-- 7 |

8 | Location of configuration documentation to link to, let %s substitute 9 | into the configuration's namespace and directive names sans the percent 10 | sign. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowedFonts.txt: -------------------------------------------------------------------------------- 1 | CSS.AllowedFonts 2 | TYPE: lookup/null 3 | VERSION: 4.3.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 |

7 | Allows you to manually specify a set of allowed fonts. If 8 | NULL, all fonts are allowed. This directive 9 | affects generic names (serif, sans-serif, monospace, cursive, 10 | fantasy) as well as specific font families. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /fuel/application/views/_blocks/posts/tags.php: -------------------------------------------------------------------------------- 1 | fuel->posts->get_published_tags(); ?> 6 | 7 |
8 |

Tags

9 | 17 |
18 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/Twig/Node/Expression/Binary/Equal.php: -------------------------------------------------------------------------------- 1 | raw('=='); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/Twig/Node/Expression/Binary/Less.php: -------------------------------------------------------------------------------- 1 | raw('<'); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/Twig/Sandbox/SecurityError.php: -------------------------------------------------------------------------------- 1 | 16 | */ 17 | class Twig_Sandbox_SecurityError extends Twig_Error 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedComments.txt: -------------------------------------------------------------------------------- 1 | HTML.AllowedComments 2 | TYPE: lookup 3 | VERSION: 4.4.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | A whitelist which indicates what explicit comment bodies should be 7 | allowed, modulo leading and trailing whitespace. See also %HTML.AllowedCommentsRegexp 8 | (these directives are union'ed together, so a comment is considered 9 | valid if any directive deems it valid.) 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.Newline.txt: -------------------------------------------------------------------------------- 1 | Output.Newline 2 | TYPE: string/null 3 | VERSION: 2.0.1 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

8 | Newline string to format final output with. If left null, HTML Purifier 9 | will auto-detect the default newline type of the system and use that; 10 | you can manually override it here. Remember, \r\n is Windows, \r 11 | is Mac, and \n is Unix. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/Twig/Error/Runtime.php: -------------------------------------------------------------------------------- 1 | 17 | */ 18 | class Twig_Error_Runtime extends Twig_Error 19 | { 20 | } 21 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/Twig/Node/Expression/Binary/Greater.php: -------------------------------------------------------------------------------- 1 | raw('>'); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/Twig/Node/Expression/Binary/NotEqual.php: -------------------------------------------------------------------------------- 1 | raw('!='); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php: -------------------------------------------------------------------------------- 1 | raw('<='); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/Twig/Node/Expression/Binary/GreaterEqual.php: -------------------------------------------------------------------------------- 1 | raw('>='); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /fuel/application/config/google.php: -------------------------------------------------------------------------------- 1 | raw('-'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/Twig/Node/Expression/Unary/Not.php: -------------------------------------------------------------------------------- 1 | raw('!'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/Twig/Node/Expression/Unary/Pos.php: -------------------------------------------------------------------------------- 1 | raw('+'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /fuel/application/config/MY_config.php: -------------------------------------------------------------------------------- 1 | raw('||'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.ID.HTML5.txt: -------------------------------------------------------------------------------- 1 | Attr.ID.HTML5 2 | TYPE: bool/null 3 | DEFAULT: null 4 | VERSION: 4.8.0 5 | --DESCRIPTION-- 6 | In HTML5, restrictions on the format of the id attribute have been significantly 7 | relaxed, such that any string is valid so long as it contains no spaces and 8 | is at least one character. In lieu of a general HTML5 compatibility flag, 9 | set this configuration directive to true to use the relaxed rules. 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions 2 | TYPE: lookup 3 | VERSION: 4.0.0 4 | DEFAULT: array('td' => true, 'th' => true) 5 | --DESCRIPTION-- 6 |

7 | When %AutoFormat.RemoveEmpty and %AutoFormat.RemoveEmpty.RemoveNbsp 8 | are enabled, this directive defines what HTML elements should not be 9 | removede if they have only a non-breaking space in them. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'xml:lang' => 'LanguageCode', 16 | ) 17 | ); 18 | } 19 | 20 | // vim: et sw=4 sts=4 21 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/Twig/Node/Expression.php: -------------------------------------------------------------------------------- 1 | 17 | */ 18 | abstract class Twig_Node_Expression extends Twig_Node 19 | { 20 | } 21 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/Twig/Node/Expression/Binary/Add.php: -------------------------------------------------------------------------------- 1 | raw('+'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/Twig/Node/Expression/Binary/And.php: -------------------------------------------------------------------------------- 1 | raw('&&'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/Twig/Node/Expression/Binary/Div.php: -------------------------------------------------------------------------------- 1 | raw('/'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/Twig/Node/Expression/Binary/Mod.php: -------------------------------------------------------------------------------- 1 | raw('%'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/Twig/Node/Expression/Binary/Mul.php: -------------------------------------------------------------------------------- 1 | raw('*'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/Twig/Node/Expression/Binary/Sub.php: -------------------------------------------------------------------------------- 1 | raw('-'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Cache.DefinitionImpl.txt: -------------------------------------------------------------------------------- 1 | Cache.DefinitionImpl 2 | TYPE: string/null 3 | VERSION: 2.0.0 4 | DEFAULT: 'Serializer' 5 | --DESCRIPTION-- 6 | 7 | This directive defines which method to use when caching definitions, 8 | the complex data-type that makes HTML Purifier tick. Set to null 9 | to disable caching (not recommended, as you will see a definite 10 | performance degradation). 11 | 12 | --ALIASES-- 13 | Core.DefinitionCache 14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'lang' => 'LanguageCode', 16 | ) 17 | ); 18 | } 19 | 20 | // vim: et sw=4 sts=4 21 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/Twig/Node/Expression/Binary/Concat.php: -------------------------------------------------------------------------------- 1 | raw('.'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/_blocks/fuel_header.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | <?=$page_title?> 6 | 7 | 8 | 9 | 10 | 11 | $c) : echo css(array($m => $c))."\n\t"; endforeach; ?> 12 | 13 | 14 | 17 | 18 | -------------------------------------------------------------------------------- /fuel/application/config/profiler.php: -------------------------------------------------------------------------------- 1 | 8 | Converts all URIs into absolute forms. This is useful when the HTML 9 | being filtered assumes a specific base path, but will actually be 10 | viewed in a different context (and setting an alternate base URI is 11 | not possible). %URI.Base must be set for this directive to work. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/Twig/Error/Syntax.php: -------------------------------------------------------------------------------- 1 | 17 | */ 18 | class Twig_Error_Syntax extends Twig_Error 19 | { 20 | } 21 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/Twig/Node/Expression/Binary/BitwiseAnd.php: -------------------------------------------------------------------------------- 1 | raw('&'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/Twig/Node/Expression/Binary/BitwiseOr.php: -------------------------------------------------------------------------------- 1 | raw('|'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/Twig/Node/Expression/Binary/BitwiseXor.php: -------------------------------------------------------------------------------- 1 | raw('^'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/_generate/results_cli.php: -------------------------------------------------------------------------------- 1 | CREATED 2 | 3 | 4 | * 5 | 6 | 7 | There were no files created. 8 | 9 | 10 | 11 | MODIFIED 12 | 13 | * 14 | 15 | 16 | 17 | 18 | ERRORS 19 | 20 | * 21 | 22 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeIframe.txt: -------------------------------------------------------------------------------- 1 | HTML.SafeIframe 2 | TYPE: bool 3 | VERSION: 4.4.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Whether or not to permit iframe tags in untrusted documents. This 8 | directive must be accompanied by a whitelist of permitted iframes, 9 | such as %URI.SafeIframeRegexp, otherwise it will fatally error. 10 | This directive has no effect on strict doctypes, as iframes are not 11 | valid. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/_docs/introduction/demo-site.php: -------------------------------------------------------------------------------- 1 |

Demo Site

2 |

Sometimes the easiest way to learn is to just see it in action. There is currently a demo branch we keep up to date that uses a fictitious company called Widgicorp to help demonstrate 3 | the more commonly used functionality of FUEL CMS. 4 | You can download the demo on GitHub or view it here. 5 |

-------------------------------------------------------------------------------- /fuel/modules/fuel/views/_docs/libraries/fuel_base_controller.php: -------------------------------------------------------------------------------- 1 |

Fuel Base Controller Class

2 |

The Fuel_base_controller Class should be used for CMS controllers. It is in charge of initializing the Fuel_admin class 3 | which is used to display the various aspects of the CMS. Below is an example of how to use it for your own CMS controllers.

4 | 5 |

Example

6 |
 7 | require_once(FUEL_PATH.'/libraries/Fuel_base_controller.php');
 8 | 
 9 | class My_module_controller extends Fuel_base_controller {
10 | ...
11 | 
-------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveProcessingInstructions.txt: -------------------------------------------------------------------------------- 1 | Core.RemoveProcessingInstructions 2 | TYPE: bool 3 | VERSION: 4.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | Instead of escaping processing instructions in the form <? ... 7 | ?>, remove it out-right. This may be useful if the HTML 8 | you are validating contains XML processing instruction gunk, however, 9 | it can also be user-unfriendly for people attempting to post PHP 10 | snippets. 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/Twig/TestCallableInterface.php: -------------------------------------------------------------------------------- 1 | 16 | * @deprecated since 1.12 (to be removed in 2.0) 17 | */ 18 | interface Twig_TestCallableInterface 19 | { 20 | public function getCallable(); 21 | } 22 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/_generate/model/sql/careers.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE IF NOT EXISTS `careers` ( 2 | `id` int(11) NOT NULL AUTO_INCREMENT, 3 | `job_title` varchar(255) NOT NULL, 4 | `location` varchar(150) NOT NULL, 5 | `job_description` text NOT NULL, 6 | `skills_needed` text NOT NULL, 7 | `desired_skills` text NOT NULL, 8 | `education` text NOT NULL, 9 | `experience` text NOT NULL, 10 | `publish_date` date NOT NULL, 11 | `published` enum('yes','no') NOT NULL DEFAULT 'yes', 12 | PRIMARY KEY (`id`) 13 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 14 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DefaultScheme.txt: -------------------------------------------------------------------------------- 1 | URI.DefaultScheme 2 | TYPE: string/null 3 | DEFAULT: 'http' 4 | --DESCRIPTION-- 5 | 6 |

7 | Defines through what scheme the output will be served, in order to 8 | select the proper object validator when no scheme information is present. 9 |

10 | 11 |

12 | Starting with HTML Purifier 4.9.0, the default scheme can be null, in 13 | which case we reject all URIs which do not have explicit schemes. 14 |

15 | --# vim: et sw=4 sts=4 16 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/_generate/advanced/install/install.php: -------------------------------------------------------------------------------- 1 | fuel->posts->get_published_categories(); ?> 6 | 7 |
8 |

Categories

9 | 17 |
18 | -------------------------------------------------------------------------------- /fuel/modules/fuel/controllers/Tools.php: -------------------------------------------------------------------------------- 1 | _validate_user('tools'); 14 | 15 | $vars['page_title'] = $this->fuel->admin->page_title(lang('section_tools'), FALSE); 16 | 17 | $this->fuel->admin->set_titlebar(lang('module_tools'), 'ico_tools'); 18 | $this->fuel->admin->render('tools', $vars, Fuel_admin::DISPLAY_NO_ACTION, FUEL_FOLDER); 19 | } 20 | } -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.CollectErrors.txt: -------------------------------------------------------------------------------- 1 | Core.CollectErrors 2 | TYPE: bool 3 | VERSION: 2.0.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 | Whether or not to collect errors found while filtering the document. This 8 | is a useful way to give feedback to your users. Warning: 9 | Currently this feature is very patchy and experimental, with lots of 10 | possible error messages not yet implemented. It will not cause any 11 | problems, but it may not help your users either. 12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /fuel/application/config/memcached.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'hostname' => '127.0.0.1', 16 | 'port' => '11211', 17 | 'weight' => '1', 18 | ), 19 | ); 20 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPermissions.txt: -------------------------------------------------------------------------------- 1 | Cache.SerializerPermissions 2 | TYPE: int/null 3 | VERSION: 4.3.0 4 | DEFAULT: 0755 5 | --DESCRIPTION-- 6 | 7 |

8 | Directory permissions of the files and directories created inside 9 | the DefinitionCache/Serializer or other custom serializer path. 10 |

11 |

12 | In HTML Purifier 4.8.0, this also supports NULL, 13 | which means that no chmod'ing or directory creation shall 14 | occur. 15 |

16 | --# vim: et sw=4 sts=4 17 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DisableExternal.txt: -------------------------------------------------------------------------------- 1 | URI.DisableExternal 2 | TYPE: bool 3 | VERSION: 1.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | Disables links to external websites. This is a highly effective anti-spam 7 | and anti-pagerank-leech measure, but comes at a hefty price: nolinks or 8 | images outside of your domain will be allowed. Non-linkified URIs will 9 | still be preserved. If you want to be able to link to subdomains or use 10 | absolute URIs, specify %URI.Host for your website. 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/_generate/advanced/config/{module}.php: -------------------------------------------------------------------------------- 1 | '{module_name}', 9 | ); 10 | 11 | 12 | /* 13 | |-------------------------------------------------------------------------- 14 | | ADDITIONAL SETTINGS: 15 | |-------------------------------------------------------------------------- 16 | */ 17 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/tools.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 12 |
13 | 14 |
15 | 16 | 17 |
18 | 19 | 20 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeObject.txt: -------------------------------------------------------------------------------- 1 | HTML.SafeObject 2 | TYPE: bool 3 | VERSION: 3.1.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Whether or not to permit object tags in documents, with a number of extra 8 | security features added to prevent script execution. This is similar to 9 | what websites like MySpace do to object tags. You should also enable 10 | %Output.FlashCompat in order to generate Internet Explorer 11 | compatibility code for your object tags. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DisableResources.txt: -------------------------------------------------------------------------------- 1 | URI.DisableResources 2 | TYPE: bool 3 | VERSION: 4.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Disables embedding resources, essentially meaning no pictures. You can 8 | still link to them though. See %URI.DisableExternalResources for why 9 | this might be a good idea. 10 |

11 |

12 | Note: While this directive has been available since 1.3.0, 13 | it didn't actually start doing anything until 4.2.0. 14 |

15 | --# vim: et sw=4 sts=4 16 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/settings.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |

4 | 5 |

6 | 7 |

8 | 16 |
17 | 18 |
-------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php: -------------------------------------------------------------------------------- 1 | parseCDATA($string); 18 | } 19 | } 20 | 21 | // vim: et sw=4 sts=4 22 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowTricky.txt: -------------------------------------------------------------------------------- 1 | CSS.AllowTricky 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 3.1.0 5 | --DESCRIPTION-- 6 | This parameter determines whether or not to allow "tricky" CSS properties and 7 | values. Tricky CSS properties/values can drastically modify page layout or 8 | be used for deceptive practices but do not directly constitute a security risk. 9 | For example, display:none; is considered a tricky property that 10 | will only be allowed if this directive is set to true. 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.ConvertDocumentToFragment.txt: -------------------------------------------------------------------------------- 1 | Core.ConvertDocumentToFragment 2 | TYPE: bool 3 | DEFAULT: true 4 | --DESCRIPTION-- 5 | 6 | This parameter determines whether or not the filter should convert 7 | input that is a full document with html and body tags to a fragment 8 | of just the contents of a body tag. This parameter is simply something 9 | HTML Purifier can do during an edge-case: for most inputs, this 10 | processing is not necessary. 11 | 12 | --ALIASES-- 13 | Core.AcceptFullDocuments 14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/_blocks/warning_window.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | 14 |
15 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/preview.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | markItUp! preview template 6 | 7 | 8 | 9 | 10 | 11 | 14 | 15 | 16 |
17 | 18 |
19 | 20 | 21 | -------------------------------------------------------------------------------- /assets/css/reset.css: -------------------------------------------------------------------------------- 1 | * { outline-style: none; } 2 | h1,h2,h3,h4,h5,h6,pre,code { font-size:1em; } 3 | ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset { margin:0; padding:0; } 4 | input { margin: 0; } 5 | a img,:link img,:visited img { border: none; } 6 | ol,ul{list-style:none;} 7 | th{text-align:left;} 8 | h1,h2,h3,h4{font-size:100%;} 9 | q:before,q:after{content:'';} 10 | pre,code{font:115% monospace; font-size:100%;} 11 | th{text-align:left;} 12 | cite,code,th,address{font-style:normal;font-weight:normal;} 13 | body { font-size:62.5%; } 14 | table { border-spacing: 0; border: 0; } 15 | table td { padding: 0; } -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Doctype.txt: -------------------------------------------------------------------------------- 1 | HTML.Doctype 2 | TYPE: string/null 3 | DEFAULT: NULL 4 | --DESCRIPTION-- 5 | Doctype to use during filtering. Technically speaking this is not actually 6 | a doctype (as it does not identify a corresponding DTD), but we are using 7 | this name for sake of simplicity. When non-blank, this will override any 8 | older directives like %HTML.XHTML or %HTML.Strict. 9 | --ALLOWED-- 10 | 'HTML 4.01 Transitional', 'HTML 4.01 Strict', 'XHTML 1.0 Transitional', 'XHTML 1.0 Strict', 'XHTML 1.1' 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/Twig/FilterCallableInterface.php: -------------------------------------------------------------------------------- 1 | 18 | * @deprecated since 1.12 (to be removed in 2.0) 19 | */ 20 | interface Twig_FilterCallableInterface 21 | { 22 | public function getCallable(); 23 | } 24 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/_docs/libraries/modular_extensions.php: -------------------------------------------------------------------------------- 1 |

Modular Extension - HMVC

2 |

Modular Extensions - HMVC, developed by wiredesignz, 3 | extends CodeIgniter to allow for module development. The CodeIgniter libraries Loader, Router, Config and Language 4 | are either overwritten or extended to allow for module development and are located in the application/third_party/MX/ folder. 5 |

-------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.IDPrefix.txt: -------------------------------------------------------------------------------- 1 | Attr.IDPrefix 2 | TYPE: string 3 | VERSION: 1.2.0 4 | DEFAULT: '' 5 | --DESCRIPTION-- 6 | String to prefix to IDs. If you have no idea what IDs your pages may use, 7 | you may opt to simply add a prefix to all user-submitted ID attributes so 8 | that they are still usable, but will not conflict with core page IDs. 9 | Example: setting the directive to 'user_' will result in a user submitted 10 | 'foo' to become 'user_foo' Be sure to set %HTML.EnableAttrID to true 11 | before using this. 12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.DisableExcludes.txt: -------------------------------------------------------------------------------- 1 | Core.DisableExcludes 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 4.5.0 5 | --DESCRIPTION-- 6 |

7 | This directive disables SGML-style exclusions, e.g. the exclusion of 8 | <object> in any descendant of a 9 | <pre> tag. Disabling excludes will allow some 10 | invalid documents to pass through HTML Purifier, but HTML Purifier 11 | will also be less likely to accidentally remove large documents during 12 | processing. 13 |

14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.ForbiddenProperties.txt: -------------------------------------------------------------------------------- 1 | CSS.ForbiddenProperties 2 | TYPE: lookup 3 | VERSION: 4.2.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 |

7 | This is the logical inverse of %CSS.AllowedProperties, and it will 8 | override that directive or any other directive. If possible, 9 | %CSS.AllowedProperties is recommended over this directive, 10 | because it can sometimes be difficult to tell whether or not you've 11 | forbidden all of the CSS properties you truly would like to disallow. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Attr.Name.UseCDATA.txt: -------------------------------------------------------------------------------- 1 | HTML.Attr.Name.UseCDATA 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 4.0.0 5 | --DESCRIPTION-- 6 | The W3C specification DTD defines the name attribute to be CDATA, not ID, due 7 | to limitations of DTD. In certain documents, this relaxed behavior is desired, 8 | whether it is to specify duplicate names, or to specify names that would be 9 | illegal IDs (for example, names that begin with a digit.) Set this configuration 10 | directive to true to use the relaxed parsing rules. 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/Twig/FunctionCallableInterface.php: -------------------------------------------------------------------------------- 1 | 18 | * @deprecated since 1.12 (to be removed in 2.0) 19 | */ 20 | interface Twig_FunctionCallableInterface 21 | { 22 | public function getCallable(); 23 | } 24 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultImageAlt.txt: -------------------------------------------------------------------------------- 1 | Attr.DefaultImageAlt 2 | TYPE: string/null 3 | DEFAULT: null 4 | VERSION: 3.2.0 5 | --DESCRIPTION-- 6 | This is the content of the alt tag of an image if the user had not 7 | previously specified an alt attribute. This applies to all images without 8 | a valid alt attribute, as opposed to %Attr.DefaultInvalidImageAlt, which 9 | only applies to invalid images, and overrides in the case of an invalid image. 10 | Default behavior with null is to use the basename of the src tag for the alt. 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.RemoveEmpty.RemoveNbsp 2 | TYPE: bool 3 | VERSION: 4.0.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | When enabled, HTML Purifier will treat any elements that contain only 8 | non-breaking spaces as well as regular whitespace as empty, and remove 9 | them when %AutoFormat.RemoveEmpty is enabled. 10 |

11 |

12 | See %AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions for a list of elements 13 | that don't have this behavior applied to them. 14 |

15 | --# vim: et sw=4 sts=4 16 | -------------------------------------------------------------------------------- /fuel/application/config/environments.php: -------------------------------------------------------------------------------- 1 | array('localhost*', '192.:*'), 12 | | 'production' => array('mysite.com'), 13 | | ); 14 | */ 15 | 16 | $environments = array( 17 | 'development' => array('localhost*', '192.*', '*.dev', 'local.*'), 18 | ); 19 | -------------------------------------------------------------------------------- /fuel/application/views/_variables/global.php: -------------------------------------------------------------------------------- 1 | 'page_title', 'delimiter' => ' : ', 'order' => 'desc', 'home_link' => 'Home')); 10 | $vars['meta_keywords'] = ''; 11 | $vars['meta_description'] = ''; 12 | $vars['js'] = array(); 13 | $vars['css'] = array(); 14 | $vars['body_class'] = uri_segment(1).' '.uri_segment(2); 15 | 16 | // page specific variables 17 | $pages = array(); 18 | ?> -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeEmbed.txt: -------------------------------------------------------------------------------- 1 | HTML.SafeEmbed 2 | TYPE: bool 3 | VERSION: 3.1.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Whether or not to permit embed tags in documents, with a number of extra 8 | security features added to prevent script execution. This is similar to 9 | what websites like MySpace do to embed tags. Embed is a proprietary 10 | element and will cause your website to stop validating; you should 11 | see if you can use %Output.FlashCompat with %HTML.SafeObject instead 12 | first.

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/dwoo/Dwoo/Adapters/CodeIgniter/config/dwootemplate.php: -------------------------------------------------------------------------------- 1 | 7 | This directive controls the maximum number of pixels in the width and 8 | height attributes in img tags. This is 9 | in place to prevent imagecrash attacks, disable with null at your own risk. 10 | This directive is similar to %CSS.MaxImgLength, and both should be 11 | concurrently edited, although there are 12 | subtle differences in the input format (the HTML max is an integer). 13 |

14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/HTML5Purifier/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php: -------------------------------------------------------------------------------- 1 | get('EmbeddedURI', true); 19 | } 20 | } 21 | 22 | // vim: et sw=4 sts=4 23 | -------------------------------------------------------------------------------- /fuel/modules/fuel/libraries/parser/dwoo/Dwoo/Exception.php: -------------------------------------------------------------------------------- 1 | 10 | * @copyright Copyright (c) 2008, Jordi Boggiano 11 | * @license http://dwoo.org/LICENSE Modified BSD License 12 | * @link http://dwoo.org/ 13 | * @version 1.0.0 14 | * @date 2008-10-23 15 | * @package Dwoo 16 | */ 17 | class Dwoo_Exception extends Exception 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /fuel/modules/fuel/views/_docs/general/site-variables.php: -------------------------------------------------------------------------------- 1 |

Site Variables

2 |

Site Variables are global variables you can use throughout your site and can be found under the Site Variables module on the left hand navigation in the CMS. The scope property can be a regular expression 3 | (similar to variables when using opt-in controllers) or left empty for it 4 | to apply for the entire site. 5 | Use the fuel_var function in your views to merge in a global variable 6 | or ({fuel_var('varname')} in a form field that doesn't allow PHP). 7 |

-------------------------------------------------------------------------------- /fuel/modules/fuel/controllers/Recent.php: -------------------------------------------------------------------------------- 1 | fuel->auth->get_session_namespace(); 14 | $user_data = $this->fuel->auth->user_data(); 15 | 16 | if ( ! empty($user_data['last_page'])) 17 | { 18 | $redirect_to = $user_data['last_page']; 19 | } 20 | else 21 | { 22 | $redirect_to = $this->config->item('fuel_path', 'fuel').'dashboard'; 23 | } 24 | 25 | redirect($redirect_to); 26 | } 27 | } --------------------------------------------------------------------------------