├── .gitignore ├── .htaccess ├── .travis.yml ├── README.md ├── application ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── custom.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── migration.php │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── admin.php │ ├── blog.php │ ├── index.html │ ├── login.php │ ├── pages.php │ └── verifylogin.php ├── core │ └── index.html ├── errors │ ├── error_404.php │ ├── error_db.php │ ├── error_general.php │ ├── error_php.php │ └── index.html ├── helpers │ └── index.html ├── hooks │ └── index.html ├── index.html ├── language │ └── english │ │ └── index.html ├── libraries │ └── index.html ├── logs │ └── index.html ├── models │ ├── admin_model.php │ ├── article_model.php │ ├── index.html │ └── user.php ├── third_party │ └── index.html └── views │ ├── admin │ ├── add_article.php │ ├── add_category.php │ ├── add_nav.php │ ├── add_page.php │ ├── add_sidebar.php │ ├── admin_view.php │ ├── articles.php │ ├── categories.php │ ├── delete_article.php │ ├── delete_category.php │ ├── delete_nav.php │ ├── delete_page.php │ ├── edit_article.php │ ├── edit_category.php │ ├── edit_nav.php │ ├── edit_page.php │ ├── edit_sidebar.php │ ├── nav.php │ ├── pages.php │ ├── sidebar.php │ └── template │ │ ├── footer.php │ │ └── header.php │ ├── article_view.php │ ├── category_view.php │ ├── contact_view.php │ ├── google_view.php │ ├── index.html │ ├── index_view.php │ ├── login_view.php │ ├── page_view.php │ ├── rss_view.php │ ├── search_view.php │ └── template │ └── default │ ├── footer.php │ ├── header.php │ └── sidebar.php ├── blog.sql ├── captcha └── 1403633879.0222.jpg ├── css ├── admin │ └── style.css ├── default │ ├── flexslider.css │ ├── mobile.css │ ├── prettyPhoto.css │ ├── print.css │ ├── style.css │ └── ui-darkness │ │ ├── images │ │ ├── animated-overlay.gif │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ ├── ui-bg_glass_20_555555_1x400.png │ │ ├── ui-bg_glass_40_0078a3_1x400.png │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ ├── ui-bg_gloss-wave_25_333333_500x100.png │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ ├── ui-bg_inset-soft_25_000000_1x100.png │ │ ├── ui-bg_inset-soft_30_f58400_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_4b8e0b_256x240.png │ │ ├── ui-icons_a83300_256x240.png │ │ ├── ui-icons_cccccc_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ │ ├── jquery-ui-1.10.3.custom.css │ │ └── jquery-ui-1.10.3.custom.min.css └── global │ └── ui-darkness │ ├── images │ ├── animated-overlay.gif │ ├── ui-bg_flat_30_cccccc_40x100.png │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ ├── ui-bg_glass_20_555555_1x400.png │ ├── ui-bg_glass_40_0078a3_1x400.png │ ├── ui-bg_glass_40_ffc73d_1x400.png │ ├── ui-bg_gloss-wave_25_333333_500x100.png │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ ├── ui-bg_inset-soft_25_000000_1x100.png │ ├── ui-bg_inset-soft_30_f58400_1x100.png │ ├── ui-icons_222222_256x240.png │ ├── ui-icons_4b8e0b_256x240.png │ ├── ui-icons_a83300_256x240.png │ ├── ui-icons_cccccc_256x240.png │ └── ui-icons_ffffff_256x240.png │ ├── jquery-ui-1.10.3.custom.css │ └── jquery-ui-1.10.3.custom.min.css ├── images ├── Thumbs.db ├── bg_play_pause.png ├── fonts │ ├── flexslider-icon.eot │ ├── flexslider-icon.svg │ ├── flexslider-icon.ttf │ └── flexslider-icon.woff ├── fullscreen │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── Thumbs.db │ ├── high.gif │ ├── huge.gif │ └── wide.gif ├── posts │ ├── Thumbs.db │ └── cover.png ├── prettyPhoto │ ├── dark_rounded │ │ ├── btnNext.png │ │ ├── btnPrevious.png │ │ ├── contentPattern.png │ │ ├── default_thumbnail.gif │ │ ├── loader.gif │ │ └── sprite.png │ ├── dark_square │ │ ├── btnNext.png │ │ ├── btnPrevious.png │ │ ├── contentPattern.png │ │ ├── default_thumbnail.gif │ │ ├── loader.gif │ │ └── sprite.png │ ├── default │ │ ├── default_thumb.png │ │ ├── loader.gif │ │ ├── sprite.png │ │ ├── sprite_next.png │ │ ├── sprite_prev.png │ │ ├── sprite_x.png │ │ └── sprite_y.png │ ├── facebook │ │ ├── btnNext.png │ │ ├── btnPrevious.png │ │ ├── contentPatternBottom.png │ │ ├── contentPatternLeft.png │ │ ├── contentPatternRight.png │ │ ├── contentPatternTop.png │ │ ├── default_thumbnail.gif │ │ ├── loader.gif │ │ └── sprite.png │ ├── light_rounded │ │ ├── btnNext.png │ │ ├── btnPrevious.png │ │ ├── default_thumbnail.gif │ │ ├── loader.gif │ │ └── sprite.png │ └── light_square │ │ ├── btnNext.png │ │ ├── btnPrevious.png │ │ ├── default_thumbnail.gif │ │ ├── loader.gif │ │ └── sprite.png ├── theme │ └── default │ │ ├── Thumbs.db │ │ ├── background_loop-old.jpg │ │ ├── background_loop.jpg │ │ ├── bg-old.jpg │ │ ├── bg.jpg │ │ ├── bottom_shadow-old.png │ │ ├── bottom_shadow.png │ │ ├── box_text_bg.png │ │ ├── categories_bg.jpg │ │ ├── footer.png │ │ ├── footer_bottom.jpg │ │ ├── full_page_wrapper_loop.png │ │ ├── hbullet.png │ │ ├── lwrapper_loop.png │ │ ├── menu_divider.jpg │ │ ├── menu_drop.jpg │ │ ├── menu_hover.png │ │ ├── menu_left.jpg │ │ ├── menu_loop.jpg │ │ ├── menu_right.jpg │ │ ├── right_h_bg.png │ │ ├── rwrapper_loop.png │ │ ├── search.jpg │ │ ├── slider_bg.jpg │ │ ├── slider_bg_loop.jpg │ │ └── wrapper_loop.jpg └── thumbnails │ ├── flash-logo.png │ ├── quicktime-logo.gif │ ├── t_1.jpg │ ├── t_2.jpg │ ├── t_3.jpg │ ├── t_4.jpg │ └── t_5.jpg ├── index.php ├── js ├── admin │ └── tinymce │ │ ├── langs │ │ └── readme.md │ │ ├── license.txt │ │ ├── plugins │ │ ├── advlist │ │ │ └── plugin.min.js │ │ ├── anchor │ │ │ └── plugin.min.js │ │ ├── autolink │ │ │ └── plugin.min.js │ │ ├── autoresize │ │ │ └── plugin.min.js │ │ ├── autosave │ │ │ └── plugin.min.js │ │ ├── bbcode │ │ │ └── plugin.min.js │ │ ├── charmap │ │ │ └── plugin.min.js │ │ ├── code │ │ │ └── plugin.min.js │ │ ├── contextmenu │ │ │ └── plugin.min.js │ │ ├── directionality │ │ │ └── plugin.min.js │ │ ├── emoticons │ │ │ ├── img │ │ │ │ ├── smiley-cool.gif │ │ │ │ ├── smiley-cry.gif │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ ├── smiley-frown.gif │ │ │ │ ├── smiley-innocent.gif │ │ │ │ ├── smiley-kiss.gif │ │ │ │ ├── smiley-laughing.gif │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ ├── smiley-sealed.gif │ │ │ │ ├── smiley-smile.gif │ │ │ │ ├── smiley-surprised.gif │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ ├── smiley-undecided.gif │ │ │ │ ├── smiley-wink.gif │ │ │ │ └── smiley-yell.gif │ │ │ └── plugin.min.js │ │ ├── example │ │ │ └── plugin.min.js │ │ ├── example_dependency │ │ │ └── plugin.min.js │ │ ├── fullpage │ │ │ └── plugin.min.js │ │ ├── fullscreen │ │ │ └── plugin.min.js │ │ ├── hr │ │ │ └── plugin.min.js │ │ ├── image │ │ │ └── plugin.min.js │ │ ├── importcss │ │ │ └── plugin.min.js │ │ ├── insertdatetime │ │ │ └── plugin.min.js │ │ ├── jbimages │ │ │ ├── ci │ │ │ │ ├── application │ │ │ │ │ ├── .htaccess │ │ │ │ │ ├── config │ │ │ │ │ │ ├── autoload.php │ │ │ │ │ │ ├── config.php │ │ │ │ │ │ ├── constants.php │ │ │ │ │ │ ├── database.php │ │ │ │ │ │ ├── doctypes.php │ │ │ │ │ │ ├── foreign_chars.php │ │ │ │ │ │ ├── hooks.php │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── migration.php │ │ │ │ │ │ ├── mimes.php │ │ │ │ │ │ ├── profiler.php │ │ │ │ │ │ ├── routes.php │ │ │ │ │ │ ├── smileys.php │ │ │ │ │ │ ├── uploader_settings.php │ │ │ │ │ │ └── user_agents.php │ │ │ │ │ ├── controllers │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── uploader.php │ │ │ │ │ ├── errors │ │ │ │ │ │ ├── error_404.php │ │ │ │ │ │ ├── error_db.php │ │ │ │ │ │ ├── error_general.php │ │ │ │ │ │ ├── error_php.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── jbimages_helper.php │ │ │ │ │ ├── index.html │ │ │ │ │ ├── language │ │ │ │ │ │ ├── english │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── jbstrings_lang.php │ │ │ │ │ │ ├── french │ │ │ │ │ │ │ ├── imglib_lang.php │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── jbstrings_lang.php │ │ │ │ │ │ │ └── upload_lang.php │ │ │ │ │ │ └── russian │ │ │ │ │ │ │ ├── imglib_lang.php │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── jbstrings_lang.php │ │ │ │ │ │ │ └── upload_lang.php │ │ │ │ │ └── views │ │ │ │ │ │ ├── ajax_upload_result.php │ │ │ │ │ │ ├── blank.php │ │ │ │ │ │ └── index.html │ │ │ │ ├── index.php │ │ │ │ └── system │ │ │ │ │ ├── .htaccess │ │ │ │ │ ├── core │ │ │ │ │ ├── Benchmark.php │ │ │ │ │ ├── CodeIgniter.php │ │ │ │ │ ├── Common.php │ │ │ │ │ ├── Config.php │ │ │ │ │ ├── Controller.php │ │ │ │ │ ├── Exceptions.php │ │ │ │ │ ├── Hooks.php │ │ │ │ │ ├── Input.php │ │ │ │ │ ├── Lang.php │ │ │ │ │ ├── Loader.php │ │ │ │ │ ├── Model.php │ │ │ │ │ ├── Output.php │ │ │ │ │ ├── Router.php │ │ │ │ │ ├── Security.php │ │ │ │ │ ├── URI.php │ │ │ │ │ ├── Utf8.php │ │ │ │ │ └── index.html │ │ │ │ │ ├── helpers │ │ │ │ │ ├── index.html │ │ │ │ │ └── language_helper.php │ │ │ │ │ ├── index.html │ │ │ │ │ ├── language │ │ │ │ │ ├── english │ │ │ │ │ │ ├── imglib_lang.php │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── upload_lang.php │ │ │ │ │ └── index.html │ │ │ │ │ └── libraries │ │ │ │ │ ├── Image_lib.php │ │ │ │ │ ├── Upload.php │ │ │ │ │ └── index.html │ │ │ ├── config.php │ │ │ ├── css │ │ │ │ ├── dialog-v4.css │ │ │ │ └── dialog.css │ │ │ ├── dialog-v4.htm │ │ │ ├── dialog.htm │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── img │ │ │ │ ├── jbimages-bw.gif │ │ │ │ └── spinner.gif │ │ │ ├── is_allowed.php │ │ │ ├── js │ │ │ │ ├── dialog-v4.js │ │ │ │ └── dialog.js │ │ │ ├── langs │ │ │ │ ├── en.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── fr.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── ru.js │ │ │ │ └── ru_dlg.js │ │ │ ├── plugin.js │ │ │ ├── plugin.min.js │ │ │ └── readme │ │ ├── layer │ │ │ └── plugin.min.js │ │ ├── legacyoutput │ │ │ └── plugin.min.js │ │ ├── link │ │ │ └── plugin.min.js │ │ ├── lists │ │ │ └── plugin.min.js │ │ ├── media │ │ │ ├── moxieplayer.swf │ │ │ └── plugin.min.js │ │ ├── nonbreaking │ │ │ └── plugin.min.js │ │ ├── noneditable │ │ │ └── plugin.min.js │ │ ├── pagebreak │ │ │ └── plugin.min.js │ │ ├── paste │ │ │ └── plugin.min.js │ │ ├── preview │ │ │ └── plugin.min.js │ │ ├── print │ │ │ └── plugin.min.js │ │ ├── save │ │ │ └── plugin.min.js │ │ ├── searchreplace │ │ │ └── plugin.min.js │ │ ├── spellchecker │ │ │ └── plugin.min.js │ │ ├── tabfocus │ │ │ └── plugin.min.js │ │ ├── table │ │ │ └── plugin.min.js │ │ ├── template │ │ │ └── plugin.min.js │ │ ├── textcolor │ │ │ └── plugin.min.js │ │ ├── visualblocks │ │ │ ├── css │ │ │ │ └── visualblocks.css │ │ │ └── plugin.min.js │ │ ├── visualchars │ │ │ └── plugin.min.js │ │ └── wordcount │ │ │ └── plugin.min.js │ │ ├── skins │ │ └── lightgray │ │ │ ├── content.inline.min.css │ │ │ ├── content.min.css │ │ │ ├── fonts │ │ │ ├── readme.md │ │ │ ├── tinymce-small.eot │ │ │ ├── tinymce-small.svg │ │ │ ├── tinymce-small.ttf │ │ │ ├── tinymce-small.woff │ │ │ ├── tinymce.eot │ │ │ ├── tinymce.svg │ │ │ ├── tinymce.ttf │ │ │ └── tinymce.woff │ │ │ ├── img │ │ │ ├── anchor.gif │ │ │ ├── loader.gif │ │ │ ├── object.gif │ │ │ ├── trans.gif │ │ │ └── wline.gif │ │ │ ├── skin.ie7.min.css │ │ │ └── skin.min.css │ │ ├── themes │ │ └── modern │ │ │ └── theme.min.js │ │ ├── tinymce-global.js │ │ └── tinymce.min.js ├── default │ ├── jquery.flexslider-min.js │ └── jquery.prettyPhoto.js └── global │ └── jqueryui │ ├── jquery-1.9.1.js │ ├── jquery-ui-1.10.3.custom.js │ ├── jquery-ui-1.10.3.custom.min.js │ └── jquiery-ui-all.js ├── license.txt ├── system ├── .htaccess ├── core │ ├── Benchmark.php │ ├── CodeIgniter.php │ ├── Common.php │ ├── Config.php │ ├── Controller.php │ ├── Exceptions.php │ ├── Hooks.php │ ├── Input.php │ ├── Lang.php │ ├── Loader.php │ ├── Model.php │ ├── Output.php │ ├── Router.php │ ├── Security.php │ ├── URI.php │ ├── Utf8.php │ └── index.html ├── database │ ├── DB.php │ ├── DB_active_rec.php │ ├── DB_cache.php │ ├── DB_driver.php │ ├── DB_forge.php │ ├── DB_result.php │ ├── DB_utility.php │ ├── drivers │ │ ├── cubrid │ │ │ ├── cubrid_driver.php │ │ │ ├── cubrid_forge.php │ │ │ ├── cubrid_result.php │ │ │ ├── cubrid_utility.php │ │ │ └── index.html │ │ ├── index.html │ │ ├── mssql │ │ │ ├── index.html │ │ │ ├── mssql_driver.php │ │ │ ├── mssql_forge.php │ │ │ ├── mssql_result.php │ │ │ └── mssql_utility.php │ │ ├── mysql │ │ │ ├── index.html │ │ │ ├── mysql_driver.php │ │ │ ├── mysql_forge.php │ │ │ ├── mysql_result.php │ │ │ └── mysql_utility.php │ │ ├── mysqli │ │ │ ├── index.html │ │ │ ├── mysqli_driver.php │ │ │ ├── mysqli_forge.php │ │ │ ├── mysqli_result.php │ │ │ └── mysqli_utility.php │ │ ├── oci8 │ │ │ ├── index.html │ │ │ ├── oci8_driver.php │ │ │ ├── oci8_forge.php │ │ │ ├── oci8_result.php │ │ │ └── oci8_utility.php │ │ ├── odbc │ │ │ ├── index.html │ │ │ ├── odbc_driver.php │ │ │ ├── odbc_forge.php │ │ │ ├── odbc_result.php │ │ │ └── odbc_utility.php │ │ ├── pdo │ │ │ ├── index.html │ │ │ ├── pdo_driver.php │ │ │ ├── pdo_forge.php │ │ │ ├── pdo_result.php │ │ │ └── pdo_utility.php │ │ ├── postgre │ │ │ ├── index.html │ │ │ ├── postgre_driver.php │ │ │ ├── postgre_forge.php │ │ │ ├── postgre_result.php │ │ │ └── postgre_utility.php │ │ ├── sqlite │ │ │ ├── index.html │ │ │ ├── sqlite_driver.php │ │ │ ├── sqlite_forge.php │ │ │ ├── sqlite_result.php │ │ │ └── sqlite_utility.php │ │ └── sqlsrv │ │ │ ├── index.html │ │ │ ├── sqlsrv_driver.php │ │ │ ├── sqlsrv_forge.php │ │ │ ├── sqlsrv_result.php │ │ │ └── sqlsrv_utility.php │ └── index.html ├── fonts │ ├── index.html │ └── texb.ttf ├── helpers │ ├── array_helper.php │ ├── captcha_helper.php │ ├── cookie_helper.php │ ├── date_helper.php │ ├── directory_helper.php │ ├── download_helper.php │ ├── email_helper.php │ ├── file_helper.php │ ├── form_helper.php │ ├── html_helper.php │ ├── index.html │ ├── inflector_helper.php │ ├── language_helper.php │ ├── number_helper.php │ ├── path_helper.php │ ├── security_helper.php │ ├── smiley_helper.php │ ├── string_helper.php │ ├── text_helper.php │ ├── typography_helper.php │ ├── url_helper.php │ └── xml_helper.php ├── index.html ├── language │ ├── english │ │ ├── calendar_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── migration_lang.php │ │ ├── number_lang.php │ │ ├── profiler_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php │ └── index.html └── libraries │ ├── Cache │ ├── Cache.php │ └── drivers │ │ ├── Cache_apc.php │ │ ├── Cache_dummy.php │ │ ├── Cache_file.php │ │ └── Cache_memcached.php │ ├── Calendar.php │ ├── Cart.php │ ├── Driver.php │ ├── Email.php │ ├── Encrypt.php │ ├── Form_validation.php │ ├── Ftp.php │ ├── Image_lib.php │ ├── Javascript.php │ ├── Log.php │ ├── Migration.php │ ├── Pagination.php │ ├── Parser.php │ ├── Profiler.php │ ├── Session.php │ ├── Sha1.php │ ├── Table.php │ ├── Trackback.php │ ├── Typography.php │ ├── Unit_test.php │ ├── Upload.php │ ├── User_agent.php │ ├── Xmlrpc.php │ ├── Xmlrpcs.php │ ├── Zip.php │ ├── index.html │ └── javascript │ └── Jquery.php └── user_guide ├── changelog.html ├── database ├── active_record.html ├── caching.html ├── call_function.html ├── configuration.html ├── connecting.html ├── examples.html ├── fields.html ├── forge.html ├── helpers.html ├── index.html ├── queries.html ├── results.html ├── table_data.html ├── transactions.html └── utilities.html ├── doc_style ├── index.html └── template.html ├── general ├── alternative_php.html ├── ancillary_classes.html ├── autoloader.html ├── caching.html ├── cli.html ├── common_functions.html ├── controllers.html ├── core_classes.html ├── creating_drivers.html ├── creating_libraries.html ├── credits.html ├── drivers.html ├── environments.html ├── errors.html ├── helpers.html ├── hooks.html ├── libraries.html ├── managing_apps.html ├── models.html ├── profiling.html ├── quick_reference.html ├── requirements.html ├── reserved_names.html ├── routing.html ├── security.html ├── styleguide.html ├── urls.html └── views.html ├── helpers ├── array_helper.html ├── captcha_helper.html ├── cookie_helper.html ├── date_helper.html ├── directory_helper.html ├── download_helper.html ├── email_helper.html ├── file_helper.html ├── form_helper.html ├── html_helper.html ├── inflector_helper.html ├── language_helper.html ├── number_helper.html ├── path_helper.html ├── security_helper.html ├── smiley_helper.html ├── string_helper.html ├── text_helper.html ├── typography_helper.html ├── url_helper.html └── xml_helper.html ├── images ├── appflowchart.gif ├── arrow.gif ├── ci_logo.jpg ├── ci_logo_flame.jpg ├── ci_quick_ref.png ├── codeigniter_1.7.1_helper_reference.pdf ├── codeigniter_1.7.1_helper_reference.png ├── codeigniter_1.7.1_library_reference.pdf ├── codeigniter_1.7.1_library_reference.png ├── file.gif ├── folder.gif ├── nav_bg_darker.jpg ├── nav_separator_darker.jpg ├── nav_toggle_darker.jpg ├── reactor-bullet.png ├── smile.gif └── transparent.gif ├── index.html ├── installation ├── downloads.html ├── index.html ├── troubleshooting.html ├── upgrade_120.html ├── upgrade_130.html ├── upgrade_131.html ├── upgrade_132.html ├── upgrade_133.html ├── upgrade_140.html ├── upgrade_141.html ├── upgrade_150.html ├── upgrade_152.html ├── upgrade_153.html ├── upgrade_154.html ├── upgrade_160.html ├── upgrade_161.html ├── upgrade_162.html ├── upgrade_163.html ├── upgrade_170.html ├── upgrade_171.html ├── upgrade_172.html ├── upgrade_200.html ├── upgrade_201.html ├── upgrade_202.html ├── upgrade_203.html ├── upgrade_210.html ├── upgrade_211.html ├── upgrade_212.html ├── upgrade_213.html ├── upgrade_214.html ├── upgrade_b11.html └── upgrading.html ├── libraries ├── benchmark.html ├── caching.html ├── calendar.html ├── cart.html ├── config.html ├── email.html ├── encryption.html ├── file_uploading.html ├── form_validation.html ├── ftp.html ├── image_lib.html ├── input.html ├── javascript.html ├── language.html ├── loader.html ├── migration.html ├── output.html ├── pagination.html ├── parser.html ├── security.html ├── sessions.html ├── table.html ├── trackback.html ├── typography.html ├── unit_testing.html ├── uri.html ├── user_agent.html ├── xmlrpc.html └── zip.html ├── license.html ├── nav ├── hacks.txt ├── moo.fx.js ├── nav.js ├── prototype.lite.js └── user_guide_menu.js ├── overview ├── appflow.html ├── at_a_glance.html ├── cheatsheets.html ├── features.html ├── getting_started.html ├── goals.html ├── index.html └── mvc.html ├── toc.html ├── tutorial ├── conclusion.html ├── create_news_items.html ├── hard_coded_pages.html ├── index.html ├── news_section.html └── static_pages.html └── userguide.css /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | application/cache/* 4 | !application/cache/index.html 5 | !application/cache/.htaccess 6 | 7 | application/logs/* 8 | !application/logs/index.html 9 | !application/logs/.htaccess 10 | /.idea/* 11 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine on 2 | RewriteCond $1 !^(index\.php|images|robots\.txt|uploads|captcha|css|js|images) 3 | RewriteRule ^(.*)$ index.php/$1 [L] -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | branches: 2 | except: 3 | - 2.1-stable 4 | - master -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CODEIGNITER BLOG PROJECT WRITTEN BY [GEORGE WHITCHER](http://www.georgewhitcher.com) # 2 | 3 | Thank you for your interest in my Codeigniter Blog Project. I am still working on this project but my main site has replaced it with LBLOG my [Laravel Blog Project](https://bitbucket.org/gwhitcher/lblog-a-laravel-blog-software). 4 | 5 | ### INSTALLATION ### 6 | 7 | * Setup a database and user. 8 | * Go into PHPMYADMIN and import "blog.sql" into your newly created database by going to import>choose "blog.sql">choose import. 9 | * Configure the database file by going to /application/config/database.php 10 | * Configure your site specific values by going to /application/config/custom.php 11 | * Your site should now be installed. 12 | 13 | ### ADMINISTRATION ### 14 | 15 | * Visit DOMAIN.COM/admin 16 | * The default user and password is admin and administrator (once logged in it is suggested you change these immediately. This can be done by visiting the users section of the administration.) 17 | 18 | ### QUESTIONS/COMMENTS ### 19 | 20 | * If you have any questions the fastest way to get results is by visiting my website [http://www.georgewhitcher.com](http://www.georgewhitcher.com) 21 | -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/config/constants.php: -------------------------------------------------------------------------------- 1 | '', 5 | 'xhtml1-strict' => '', 6 | 'xhtml1-trans' => '', 7 | 'xhtml1-frame' => '', 8 | 'html5' => '', 9 | 'html4-strict' => '', 10 | 'html4-trans' => '', 11 | 'html4-frame' => '' 12 | ); 13 | 14 | /* End of file doctypes.php */ 15 | /* Location: ./application/config/doctypes.php */ -------------------------------------------------------------------------------- /application/config/foreign_chars.php: -------------------------------------------------------------------------------- 1 | 'ae', 12 | '/ö|œ/' => 'oe', 13 | '/ü/' => 'ue', 14 | '/Ä/' => 'Ae', 15 | '/Ü/' => 'Ue', 16 | '/Ö/' => 'Oe', 17 | '/À|Á|Â|Ã|Ä|Å|Ǻ|Ā|Ă|Ą|Ǎ/' => 'A', 18 | '/à|á|â|ã|å|ǻ|ā|ă|ą|ǎ|ª/' => 'a', 19 | '/Ç|Ć|Ĉ|Ċ|Č/' => 'C', 20 | '/ç|ć|ĉ|ċ|č/' => 'c', 21 | '/Ð|Ď|Đ/' => 'D', 22 | '/ð|ď|đ/' => 'd', 23 | '/È|É|Ê|Ë|Ē|Ĕ|Ė|Ę|Ě/' => 'E', 24 | '/è|é|ê|ë|ē|ĕ|ė|ę|ě/' => 'e', 25 | '/Ĝ|Ğ|Ġ|Ģ/' => 'G', 26 | '/ĝ|ğ|ġ|ģ/' => 'g', 27 | '/Ĥ|Ħ/' => 'H', 28 | '/ĥ|ħ/' => 'h', 29 | '/Ì|Í|Î|Ï|Ĩ|Ī|Ĭ|Ǐ|Į|İ/' => 'I', 30 | '/ì|í|î|ï|ĩ|ī|ĭ|ǐ|į|ı/' => 'i', 31 | '/Ĵ/' => 'J', 32 | '/ĵ/' => 'j', 33 | '/Ķ/' => 'K', 34 | '/ķ/' => 'k', 35 | '/Ĺ|Ļ|Ľ|Ŀ|Ł/' => 'L', 36 | '/ĺ|ļ|ľ|ŀ|ł/' => 'l', 37 | '/Ñ|Ń|Ņ|Ň/' => 'N', 38 | '/ñ|ń|ņ|ň|ʼn/' => 'n', 39 | '/Ò|Ó|Ô|Õ|Ō|Ŏ|Ǒ|Ő|Ơ|Ø|Ǿ/' => 'O', 40 | '/ò|ó|ô|õ|ō|ŏ|ǒ|ő|ơ|ø|ǿ|º/' => 'o', 41 | '/Ŕ|Ŗ|Ř/' => 'R', 42 | '/ŕ|ŗ|ř/' => 'r', 43 | '/Ś|Ŝ|Ş|Š/' => 'S', 44 | '/ś|ŝ|ş|š|ſ/' => 's', 45 | '/Ţ|Ť|Ŧ/' => 'T', 46 | '/ţ|ť|ŧ/' => 't', 47 | '/Ù|Ú|Û|Ũ|Ū|Ŭ|Ů|Ű|Ų|Ư|Ǔ|Ǖ|Ǘ|Ǚ|Ǜ/' => 'U', 48 | '/ù|ú|û|ũ|ū|ŭ|ů|ű|ų|ư|ǔ|ǖ|ǘ|ǚ|ǜ/' => 'u', 49 | '/Ý|Ÿ|Ŷ/' => 'Y', 50 | '/ý|ÿ|ŷ/' => 'y', 51 | '/Ŵ/' => 'W', 52 | '/ŵ/' => 'w', 53 | '/Ź|Ż|Ž/' => 'Z', 54 | '/ź|ż|ž/' => 'z', 55 | '/Æ|Ǽ/' => 'AE', 56 | '/ß/'=> 'ss', 57 | '/IJ/' => 'IJ', 58 | '/ij/' => 'ij', 59 | '/Œ/' => 'OE', 60 | '/ƒ/' => 'f' 61 | ); 62 | 63 | /* End of file foreign_chars.php */ 64 | /* Location: ./application/config/foreign_chars.php */ -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/config/migration.php: -------------------------------------------------------------------------------- 1 | migration->latest() this is the version that schema will 21 | | be upgraded / downgraded to. 22 | | 23 | */ 24 | $config['migration_version'] = 0; 25 | 26 | 27 | /* 28 | |-------------------------------------------------------------------------- 29 | | Migrations Path 30 | |-------------------------------------------------------------------------- 31 | | 32 | | Path to your migrations folder. 33 | | Typically, it will be within your application path. 34 | | Also, writing permission is required within the migrations path. 35 | | 36 | */ 37 | $config['migration_path'] = APPPATH . 'migrations/'; 38 | 39 | 40 | /* End of file migration.php */ 41 | /* Location: ./application/config/migration.php */ -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/controllers/login.php: -------------------------------------------------------------------------------- 1 | load->helper(array('form')); 13 | $navquery = $this->db->order_by("position","asc"); 14 | $navquery = $this->db->get('nav'); 15 | $data["nav"] = $navquery->result_array(); 16 | $this->load->view('template/'.$this->config->item('theme').'/header', $data); 17 | $this->load->view('login_view', $data); 18 | $this->load->view('template/'.$this->config->item('theme').'/footer', $data); 19 | } 20 | 21 | } 22 | 23 | ?> -------------------------------------------------------------------------------- /application/controllers/verifylogin.php: -------------------------------------------------------------------------------- 1 | load->model('user','',TRUE); 9 | } 10 | 11 | function index() 12 | { 13 | //This method will have the credentials validation 14 | $this->load->library('form_validation'); 15 | 16 | $this->form_validation->set_rules('username', 'Username', 'trim|required|xss_clean'); 17 | $this->form_validation->set_rules('password', 'Password', 'trim|required|xss_clean|callback_check_database'); 18 | 19 | if($this->form_validation->run() == FALSE) 20 | { 21 | //Field validation failed. User redirected to login page 22 | $navquery = $this->db->order_by("position","asc"); 23 | $navquery = $this->db->get('nav'); 24 | $data["nav"] = $navquery->result_array(); 25 | $this->load->view('/template/'.$this->config->item('theme').'/header', $data); 26 | $this->load->view('login_view'); 27 | $this->load->view('/template/'.$this->config->item('theme').'/footer'); 28 | } 29 | else 30 | { 31 | //Go to private area 32 | redirect('admin', 'refresh'); 33 | } 34 | 35 | } 36 | 37 | function check_database($password) 38 | { 39 | //Field validation succeeded. Validate against database 40 | $username = $this->input->post('username'); 41 | 42 | //query the database 43 | $result = $this->user->login($username, $password); 44 | 45 | if($result) 46 | { 47 | $sess_array = array(); 48 | foreach($result as $row) 49 | { 50 | $sess_array = array( 51 | 'id' => $row->id, 52 | 'username' => $row->username 53 | ); 54 | $this->session->set_userdata('logged_in', $sess_array); 55 | } 56 | return TRUE; 57 | } 58 | else 59 | { 60 | $this->form_validation->set_message('check_database', 'Invalid username or password'); 61 | return false; 62 | } 63 | } 64 | } 65 | ?> -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/errors/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 404 Page Not Found 5 | 55 | 56 | 57 |
58 |

59 | 60 |
61 | 62 | -------------------------------------------------------------------------------- /application/errors/error_db.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Database Error 5 | 55 | 56 | 57 |
58 |

59 | 60 |
61 | 62 | -------------------------------------------------------------------------------- /application/errors/error_general.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Error 5 | 55 | 56 | 57 |
58 |

59 | 60 |
61 | 62 | -------------------------------------------------------------------------------- /application/errors/error_php.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |

A PHP Error was encountered

4 | 5 |

Severity:

6 |

Message:

7 |

Filename:

8 |

Line Number:

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/models/article_model.php: -------------------------------------------------------------------------------- 1 | load->database(); 7 | } 8 | 9 | public function get_articles($slug) 10 | { 11 | if ($slug === FALSE) 12 | { 13 | $query = $this->db->get('articles'); 14 | return $query->result_array(); 15 | } 16 | $query = $this->db->get_where('articles', array('slug' => $slug)); 17 | return $query->row_array(); 18 | } 19 | 20 | public function get_categories($slug) 21 | { 22 | if ($slug === FALSE) 23 | { 24 | $query = $this->db->get('categories'); 25 | return $query->result_array(); 26 | } 27 | $query = $this->db->get_where('categories', array('slug' => $slug)); 28 | return $query->row_array(); 29 | } 30 | 31 | public function get_pages($slug) 32 | { 33 | if ($slug === FALSE) 34 | { 35 | $query = $this->db->get('pages'); 36 | return $query->result_array(); 37 | } 38 | $query = $this->db->get_where('pages', array('slug' => $slug)); 39 | return $query->row_array(); 40 | } 41 | 42 | } -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/models/user.php: -------------------------------------------------------------------------------- 1 | db -> select('id, username, password'); 7 | $this -> db -> from('users'); 8 | $this -> db -> where('username', $username); 9 | $this -> db -> where('password', MD5($password)); 10 | $this -> db -> limit(1); 11 | 12 | $query = $this -> db -> get(); 13 | 14 | if($query -> num_rows() == 1) 15 | { 16 | return $query->result(); 17 | } 18 | else 19 | { 20 | return false; 21 | } 22 | } 23 | } 24 | ?> -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/views/admin/add_article.php: -------------------------------------------------------------------------------- 1 |

Post article

2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 |
11 | 12 | 13 |
14 | 15 |
16 | 17 | 18 |
19 | 20 |
21 | 22 | 23 |
24 | 29 |
30 | 31 | 32 |
33 | 34 |
35 | 36 | 37 |
38 | 39 |
40 | 41 | 42 |
43 | 47 |
48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /application/views/admin/add_category.php: -------------------------------------------------------------------------------- 1 |

Add category

2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /application/views/admin/add_nav.php: -------------------------------------------------------------------------------- 1 |

Add Sidebar

2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 |
11 | 12 | 13 |
14 | 15 |
16 | Position
17 | 39 |
40 | 41 | 42 | -------------------------------------------------------------------------------- /application/views/admin/add_page.php: -------------------------------------------------------------------------------- 1 |

Add Page

2 | 3 | 4 | 5 |
6 | 7 |
8 | 9 |
10 | 11 |
12 | 13 |
14 | 15 |
16 | 17 |
18 | 19 |
20 | 21 | 22 | -------------------------------------------------------------------------------- /application/views/admin/add_sidebar.php: -------------------------------------------------------------------------------- 1 |

Add Sidebar

2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 |
11 | 12 | 13 |
14 | 15 | Position
16 | 38 |
39 | 40 | 41 | -------------------------------------------------------------------------------- /application/views/admin/admin_view.php: -------------------------------------------------------------------------------- 1 |

Welcome , to the config->item('title'); ?> Administration!

2 |

Welcome to the dashboard!

3 | 4 |
5 |

Last 5 Articles

6 | 11 | More 12 |
13 | 14 |
15 |

Last 5 Categories

16 | 21 | More 22 |
23 | 24 |
25 |

Last 5 Pages

26 | 31 | More 32 |
33 | 34 |
35 |

Last 5 Nav Items

36 | 41 | More 42 |
43 | 44 |
45 |

Last 5 Sidebar Items

46 | 51 | More 52 |
-------------------------------------------------------------------------------- /application/views/admin/articles.php: -------------------------------------------------------------------------------- 1 |

Articles

2 |
3 | 4 |
5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
EditDelete
14 | pagination->create_links(); ?> -------------------------------------------------------------------------------- /application/views/admin/categories.php: -------------------------------------------------------------------------------- 1 |

Categories

2 |
3 | 4 |
5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
EditDelete
14 | pagination->create_links(); ?> -------------------------------------------------------------------------------- /application/views/admin/delete_article.php: -------------------------------------------------------------------------------- 1 | Item deleted! -------------------------------------------------------------------------------- /application/views/admin/delete_category.php: -------------------------------------------------------------------------------- 1 | Item deleted! -------------------------------------------------------------------------------- /application/views/admin/delete_nav.php: -------------------------------------------------------------------------------- 1 | Item deleted! -------------------------------------------------------------------------------- /application/views/admin/delete_page.php: -------------------------------------------------------------------------------- 1 | Item deleted! -------------------------------------------------------------------------------- /application/views/admin/edit_category.php: -------------------------------------------------------------------------------- 1 |

Edit category

2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 |
11 | 12 | 13 |
14 | 15 |
16 | 17 | 18 |
19 | 20 |
21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /application/views/admin/edit_page.php: -------------------------------------------------------------------------------- 1 |

Edit Page

2 | View page 3 | 4 | 5 | 6 |
7 | 8 |
9 | 10 |
11 | 12 |
13 | 14 |
15 | 16 |
17 | 18 |
19 | 20 |
21 | 22 | -------------------------------------------------------------------------------- /application/views/admin/nav.php: -------------------------------------------------------------------------------- 1 |

Navigation

2 |
3 | 4 |
5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
EditDelete
14 | pagination->create_links(); ?> -------------------------------------------------------------------------------- /application/views/admin/pages.php: -------------------------------------------------------------------------------- 1 |

Pages

2 |
3 | 4 |
5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
EditDelete
14 | pagination->create_links(); ?> -------------------------------------------------------------------------------- /application/views/admin/sidebar.php: -------------------------------------------------------------------------------- 1 |

Sidebar

2 |
3 | 4 |
5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
EditDelete
14 | pagination->create_links(); ?> -------------------------------------------------------------------------------- /application/views/admin/template/footer.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /application/views/article_view.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | <?php echo $article['title']; ?> 5 | 6 |

7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 |
17 |
-------------------------------------------------------------------------------- /application/views/category_view.php: -------------------------------------------------------------------------------- 1 |
2 |

From the blog

3 | 4 |
5 | 6 | <?php echo $article['title']; ?> 7 | 8 |

9 | '); 12 | ?>... 13 |
14 | Read More 15 |
16 |
17 | 18 | pagination->create_links(); ?> 19 |
-------------------------------------------------------------------------------- /application/views/contact_view.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Contact

4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 | 23 | -------------------------------------------------------------------------------- /application/views/google_view.php: -------------------------------------------------------------------------------- 1 | ';?> 2 | 3 | 4 | 5 | 6 | 7 | daily 8 | 0.9 9 | 10 | 11 | 12 | category/ 13 | 14 | daily 15 | 0.8 16 | 17 | 18 | 19 | 20 | post// 21 | 22 | daily 23 | 0.9 24 | 25 | 26 | 27 | 28 | 29 | 30 | weekly 31 | 0.9 32 | 33 | 34 | 35 | contact 36 | 37 | weekly 38 | 0.9 39 | 40 | -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/views/index_view.php: -------------------------------------------------------------------------------- 1 |
2 |

From the blog

3 | 4 |
5 | 6 | <?php echo $article['title']; ?> 7 | 8 |

9 | '); 12 | ?>... 13 |
14 | Read More 15 |
16 |
17 | 18 | pagination->create_links(); ?> 19 |
-------------------------------------------------------------------------------- /application/views/login_view.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 |
11 | 12 | 13 |
14 |
-------------------------------------------------------------------------------- /application/views/page_view.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |

4 | ' .$page['body']. ' 5 |
6 |
7 | 18 | 19 | comments powered by Disqus 20 |
21 |
22 |
-------------------------------------------------------------------------------- /application/views/rss_view.php: -------------------------------------------------------------------------------- 1 | ';?> 2 | 3 | 4 | 5 | <?php echo $this->config->item('title'); ?> 6 | 7 | config->item('sub_title'); ?> 8 | 9 | 10 | <?php $titlereplace = preg_replace('/&(?!#?[a-z0-9]+;)/', '&', $article['title']); echo $titlereplace; ?> 11 | post// 12 | post// 13 | ...]]> 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /application/views/search_view.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Search

4 |
5 | Search: 6 | 7 |
8 | db->query('SELECT * FROM articles WHERE body LIKE \'%' . $searchterm . '%\' ORDER BY id DESC'); 12 | foreach ($searcharticle->result() as $row) { 13 | echo '
  • '.$row->title.'
  • '; 14 | } 15 | } 16 | ?> 17 |
    18 |
    -------------------------------------------------------------------------------- /application/views/template/default/footer.php: -------------------------------------------------------------------------------- 1 | 2 |
    3 |
    4 |
    5 | 20 | 21 | -------------------------------------------------------------------------------- /application/views/template/default/sidebar.php: -------------------------------------------------------------------------------- 1 |
    2 | 20 | 21 |
    -------------------------------------------------------------------------------- /captcha/1403633879.0222.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/captcha/1403633879.0222.jpg -------------------------------------------------------------------------------- /css/default/mobile.css: -------------------------------------------------------------------------------- 1 | /* MOBILE STYLES */ 2 | @media only screen and (max-width: 500px) 3 | { 4 | #container { 5 | max-width: 320px; 6 | padding: 0px; 7 | } 8 | .flexslider img { 9 | width: 285px; 10 | } 11 | #menu_wrapper { 12 | max-width: 320px; 13 | } 14 | #page_body { 15 | max-width: 285px; 16 | float: left; 17 | } 18 | nav{ 19 | width: 316px; 20 | height: auto; 21 | } 22 | article { 23 | float: left; 24 | max-width: 255px; 25 | } 26 | article img { 27 | max-width: 255px; 28 | } 29 | article .featuredimg { 30 | max-width: 255px; 31 | } 32 | .readmore { 33 | max-width: 255px; 34 | } 35 | #comments { 36 | max-width: 255px; 37 | } 38 | #pagination { 39 | float: left; 40 | } 41 | #right_wrapper { 42 | display: none; 43 | } 44 | .bottom_shadow { 45 | width: 320px; 46 | } 47 | footer { 48 | padding: 5px; 49 | } 50 | } -------------------------------------------------------------------------------- /css/default/print.css: -------------------------------------------------------------------------------- 1 | @media print { 2 | #sidebar {display: none;} 3 | 4 | #container { 5 | visibility: hidden; 6 | width: 100%; 7 | } 8 | 9 | #menu_wrapper {visibility: hidden;} 10 | 11 | #left_wrapper {visibility: hidden;} 12 | 13 | #right_wrapper {visibility: hidden;} 14 | 15 | article { 16 | margin: auto; 17 | position: absolute; 18 | left:0; 19 | right: 0; 20 | visibility: visible; 21 | z-index: 99; 22 | top: 140px; 23 | } 24 | 25 | #page_body { 26 | margin: auto; 27 | position: absolute; 28 | left:0; 29 | right: 0; 30 | visibility: visible; 31 | z-index: 99; 32 | top: 140px; 33 | } 34 | 35 | #comments {display: none;} 36 | 37 | footer {display: none;} 38 | } -------------------------------------------------------------------------------- /css/default/ui-darkness/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/default/ui-darkness/images/animated-overlay.gif -------------------------------------------------------------------------------- /css/default/ui-darkness/images/ui-bg_flat_30_cccccc_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/default/ui-darkness/images/ui-bg_flat_30_cccccc_40x100.png -------------------------------------------------------------------------------- /css/default/ui-darkness/images/ui-bg_flat_50_5c5c5c_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/default/ui-darkness/images/ui-bg_flat_50_5c5c5c_40x100.png -------------------------------------------------------------------------------- /css/default/ui-darkness/images/ui-bg_glass_20_555555_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/default/ui-darkness/images/ui-bg_glass_20_555555_1x400.png -------------------------------------------------------------------------------- /css/default/ui-darkness/images/ui-bg_glass_40_0078a3_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/default/ui-darkness/images/ui-bg_glass_40_0078a3_1x400.png -------------------------------------------------------------------------------- /css/default/ui-darkness/images/ui-bg_glass_40_ffc73d_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/default/ui-darkness/images/ui-bg_glass_40_ffc73d_1x400.png -------------------------------------------------------------------------------- /css/default/ui-darkness/images/ui-bg_gloss-wave_25_333333_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/default/ui-darkness/images/ui-bg_gloss-wave_25_333333_500x100.png -------------------------------------------------------------------------------- /css/default/ui-darkness/images/ui-bg_highlight-soft_80_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/default/ui-darkness/images/ui-bg_highlight-soft_80_eeeeee_1x100.png -------------------------------------------------------------------------------- /css/default/ui-darkness/images/ui-bg_inset-soft_25_000000_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/default/ui-darkness/images/ui-bg_inset-soft_25_000000_1x100.png -------------------------------------------------------------------------------- /css/default/ui-darkness/images/ui-bg_inset-soft_30_f58400_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/default/ui-darkness/images/ui-bg_inset-soft_30_f58400_1x100.png -------------------------------------------------------------------------------- /css/default/ui-darkness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/default/ui-darkness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /css/default/ui-darkness/images/ui-icons_4b8e0b_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/default/ui-darkness/images/ui-icons_4b8e0b_256x240.png -------------------------------------------------------------------------------- /css/default/ui-darkness/images/ui-icons_a83300_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/default/ui-darkness/images/ui-icons_a83300_256x240.png -------------------------------------------------------------------------------- /css/default/ui-darkness/images/ui-icons_cccccc_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/default/ui-darkness/images/ui-icons_cccccc_256x240.png -------------------------------------------------------------------------------- /css/default/ui-darkness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/default/ui-darkness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /css/global/ui-darkness/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/global/ui-darkness/images/animated-overlay.gif -------------------------------------------------------------------------------- /css/global/ui-darkness/images/ui-bg_flat_30_cccccc_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/global/ui-darkness/images/ui-bg_flat_30_cccccc_40x100.png -------------------------------------------------------------------------------- /css/global/ui-darkness/images/ui-bg_flat_50_5c5c5c_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/global/ui-darkness/images/ui-bg_flat_50_5c5c5c_40x100.png -------------------------------------------------------------------------------- /css/global/ui-darkness/images/ui-bg_glass_20_555555_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/global/ui-darkness/images/ui-bg_glass_20_555555_1x400.png -------------------------------------------------------------------------------- /css/global/ui-darkness/images/ui-bg_glass_40_0078a3_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/global/ui-darkness/images/ui-bg_glass_40_0078a3_1x400.png -------------------------------------------------------------------------------- /css/global/ui-darkness/images/ui-bg_glass_40_ffc73d_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/global/ui-darkness/images/ui-bg_glass_40_ffc73d_1x400.png -------------------------------------------------------------------------------- /css/global/ui-darkness/images/ui-bg_gloss-wave_25_333333_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/global/ui-darkness/images/ui-bg_gloss-wave_25_333333_500x100.png -------------------------------------------------------------------------------- /css/global/ui-darkness/images/ui-bg_highlight-soft_80_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/global/ui-darkness/images/ui-bg_highlight-soft_80_eeeeee_1x100.png -------------------------------------------------------------------------------- /css/global/ui-darkness/images/ui-bg_inset-soft_25_000000_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/global/ui-darkness/images/ui-bg_inset-soft_25_000000_1x100.png -------------------------------------------------------------------------------- /css/global/ui-darkness/images/ui-bg_inset-soft_30_f58400_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/global/ui-darkness/images/ui-bg_inset-soft_30_f58400_1x100.png -------------------------------------------------------------------------------- /css/global/ui-darkness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/global/ui-darkness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /css/global/ui-darkness/images/ui-icons_4b8e0b_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/global/ui-darkness/images/ui-icons_4b8e0b_256x240.png -------------------------------------------------------------------------------- /css/global/ui-darkness/images/ui-icons_a83300_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/global/ui-darkness/images/ui-icons_a83300_256x240.png -------------------------------------------------------------------------------- /css/global/ui-darkness/images/ui-icons_cccccc_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/global/ui-darkness/images/ui-icons_cccccc_256x240.png -------------------------------------------------------------------------------- /css/global/ui-darkness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/css/global/ui-darkness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/Thumbs.db -------------------------------------------------------------------------------- /images/bg_play_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/bg_play_pause.png -------------------------------------------------------------------------------- /images/fonts/flexslider-icon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/fonts/flexslider-icon.eot -------------------------------------------------------------------------------- /images/fonts/flexslider-icon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/fonts/flexslider-icon.ttf -------------------------------------------------------------------------------- /images/fonts/flexslider-icon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/fonts/flexslider-icon.woff -------------------------------------------------------------------------------- /images/fullscreen/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/fullscreen/1.jpg -------------------------------------------------------------------------------- /images/fullscreen/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/fullscreen/2.jpg -------------------------------------------------------------------------------- /images/fullscreen/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/fullscreen/3.jpg -------------------------------------------------------------------------------- /images/fullscreen/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/fullscreen/4.jpg -------------------------------------------------------------------------------- /images/fullscreen/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/fullscreen/5.jpg -------------------------------------------------------------------------------- /images/fullscreen/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/fullscreen/6.jpg -------------------------------------------------------------------------------- /images/fullscreen/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/fullscreen/Thumbs.db -------------------------------------------------------------------------------- /images/fullscreen/high.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/fullscreen/high.gif -------------------------------------------------------------------------------- /images/fullscreen/huge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/fullscreen/huge.gif -------------------------------------------------------------------------------- /images/fullscreen/wide.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/fullscreen/wide.gif -------------------------------------------------------------------------------- /images/posts/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/posts/Thumbs.db -------------------------------------------------------------------------------- /images/posts/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/posts/cover.png -------------------------------------------------------------------------------- /images/prettyPhoto/dark_rounded/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/dark_rounded/btnNext.png -------------------------------------------------------------------------------- /images/prettyPhoto/dark_rounded/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/dark_rounded/btnPrevious.png -------------------------------------------------------------------------------- /images/prettyPhoto/dark_rounded/contentPattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/dark_rounded/contentPattern.png -------------------------------------------------------------------------------- /images/prettyPhoto/dark_rounded/default_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/dark_rounded/default_thumbnail.gif -------------------------------------------------------------------------------- /images/prettyPhoto/dark_rounded/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/dark_rounded/loader.gif -------------------------------------------------------------------------------- /images/prettyPhoto/dark_rounded/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/dark_rounded/sprite.png -------------------------------------------------------------------------------- /images/prettyPhoto/dark_square/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/dark_square/btnNext.png -------------------------------------------------------------------------------- /images/prettyPhoto/dark_square/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/dark_square/btnPrevious.png -------------------------------------------------------------------------------- /images/prettyPhoto/dark_square/contentPattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/dark_square/contentPattern.png -------------------------------------------------------------------------------- /images/prettyPhoto/dark_square/default_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/dark_square/default_thumbnail.gif -------------------------------------------------------------------------------- /images/prettyPhoto/dark_square/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/dark_square/loader.gif -------------------------------------------------------------------------------- /images/prettyPhoto/dark_square/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/dark_square/sprite.png -------------------------------------------------------------------------------- /images/prettyPhoto/default/default_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/default/default_thumb.png -------------------------------------------------------------------------------- /images/prettyPhoto/default/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/default/loader.gif -------------------------------------------------------------------------------- /images/prettyPhoto/default/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/default/sprite.png -------------------------------------------------------------------------------- /images/prettyPhoto/default/sprite_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/default/sprite_next.png -------------------------------------------------------------------------------- /images/prettyPhoto/default/sprite_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/default/sprite_prev.png -------------------------------------------------------------------------------- /images/prettyPhoto/default/sprite_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/default/sprite_x.png -------------------------------------------------------------------------------- /images/prettyPhoto/default/sprite_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/default/sprite_y.png -------------------------------------------------------------------------------- /images/prettyPhoto/facebook/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/facebook/btnNext.png -------------------------------------------------------------------------------- /images/prettyPhoto/facebook/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/facebook/btnPrevious.png -------------------------------------------------------------------------------- /images/prettyPhoto/facebook/contentPatternBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/facebook/contentPatternBottom.png -------------------------------------------------------------------------------- /images/prettyPhoto/facebook/contentPatternLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/facebook/contentPatternLeft.png -------------------------------------------------------------------------------- /images/prettyPhoto/facebook/contentPatternRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/facebook/contentPatternRight.png -------------------------------------------------------------------------------- /images/prettyPhoto/facebook/contentPatternTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/facebook/contentPatternTop.png -------------------------------------------------------------------------------- /images/prettyPhoto/facebook/default_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/facebook/default_thumbnail.gif -------------------------------------------------------------------------------- /images/prettyPhoto/facebook/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/facebook/loader.gif -------------------------------------------------------------------------------- /images/prettyPhoto/facebook/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/facebook/sprite.png -------------------------------------------------------------------------------- /images/prettyPhoto/light_rounded/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/light_rounded/btnNext.png -------------------------------------------------------------------------------- /images/prettyPhoto/light_rounded/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/light_rounded/btnPrevious.png -------------------------------------------------------------------------------- /images/prettyPhoto/light_rounded/default_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/light_rounded/default_thumbnail.gif -------------------------------------------------------------------------------- /images/prettyPhoto/light_rounded/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/light_rounded/loader.gif -------------------------------------------------------------------------------- /images/prettyPhoto/light_rounded/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/light_rounded/sprite.png -------------------------------------------------------------------------------- /images/prettyPhoto/light_square/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/light_square/btnNext.png -------------------------------------------------------------------------------- /images/prettyPhoto/light_square/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/light_square/btnPrevious.png -------------------------------------------------------------------------------- /images/prettyPhoto/light_square/default_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/light_square/default_thumbnail.gif -------------------------------------------------------------------------------- /images/prettyPhoto/light_square/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/light_square/loader.gif -------------------------------------------------------------------------------- /images/prettyPhoto/light_square/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/prettyPhoto/light_square/sprite.png -------------------------------------------------------------------------------- /images/theme/default/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/theme/default/Thumbs.db -------------------------------------------------------------------------------- /images/theme/default/background_loop-old.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/theme/default/background_loop-old.jpg -------------------------------------------------------------------------------- /images/theme/default/background_loop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/theme/default/background_loop.jpg -------------------------------------------------------------------------------- /images/theme/default/bg-old.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/theme/default/bg-old.jpg -------------------------------------------------------------------------------- /images/theme/default/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/theme/default/bg.jpg -------------------------------------------------------------------------------- /images/theme/default/bottom_shadow-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/theme/default/bottom_shadow-old.png -------------------------------------------------------------------------------- /images/theme/default/bottom_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/theme/default/bottom_shadow.png -------------------------------------------------------------------------------- /images/theme/default/box_text_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/theme/default/box_text_bg.png -------------------------------------------------------------------------------- /images/theme/default/categories_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/theme/default/categories_bg.jpg -------------------------------------------------------------------------------- /images/theme/default/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/theme/default/footer.png -------------------------------------------------------------------------------- /images/theme/default/footer_bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/theme/default/footer_bottom.jpg -------------------------------------------------------------------------------- /images/theme/default/full_page_wrapper_loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/theme/default/full_page_wrapper_loop.png -------------------------------------------------------------------------------- /images/theme/default/hbullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/theme/default/hbullet.png -------------------------------------------------------------------------------- /images/theme/default/lwrapper_loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/theme/default/lwrapper_loop.png -------------------------------------------------------------------------------- /images/theme/default/menu_divider.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/theme/default/menu_divider.jpg -------------------------------------------------------------------------------- /images/theme/default/menu_drop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/theme/default/menu_drop.jpg -------------------------------------------------------------------------------- /images/theme/default/menu_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/theme/default/menu_hover.png -------------------------------------------------------------------------------- /images/theme/default/menu_left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/theme/default/menu_left.jpg -------------------------------------------------------------------------------- /images/theme/default/menu_loop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/theme/default/menu_loop.jpg -------------------------------------------------------------------------------- /images/theme/default/menu_right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/theme/default/menu_right.jpg -------------------------------------------------------------------------------- /images/theme/default/right_h_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/theme/default/right_h_bg.png -------------------------------------------------------------------------------- /images/theme/default/rwrapper_loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/theme/default/rwrapper_loop.png -------------------------------------------------------------------------------- /images/theme/default/search.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/theme/default/search.jpg -------------------------------------------------------------------------------- /images/theme/default/slider_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/theme/default/slider_bg.jpg -------------------------------------------------------------------------------- /images/theme/default/slider_bg_loop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/theme/default/slider_bg_loop.jpg -------------------------------------------------------------------------------- /images/theme/default/wrapper_loop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/theme/default/wrapper_loop.jpg -------------------------------------------------------------------------------- /images/thumbnails/flash-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/thumbnails/flash-logo.png -------------------------------------------------------------------------------- /images/thumbnails/quicktime-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/thumbnails/quicktime-logo.gif -------------------------------------------------------------------------------- /images/thumbnails/t_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/thumbnails/t_1.jpg -------------------------------------------------------------------------------- /images/thumbnails/t_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/thumbnails/t_2.jpg -------------------------------------------------------------------------------- /images/thumbnails/t_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/thumbnails/t_3.jpg -------------------------------------------------------------------------------- /images/thumbnails/t_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/thumbnails/t_4.jpg -------------------------------------------------------------------------------- /images/thumbnails/t_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/images/thumbnails/t_5.jpg -------------------------------------------------------------------------------- /js/admin/tinymce/langs/readme.md: -------------------------------------------------------------------------------- 1 | This is where language files should be placed. 2 | 3 | Please DO NOT translate these directly use this service: https://www.transifex.com/projects/p/tinymce/ 4 | -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/advlist/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("advlist",function(t){function e(t,e){var n=[];return tinymce.each(e.split(/[ ,]/),function(t){n.push({text:t.replace(/\-/g," ").replace(/\b\w/g,function(t){return t.toUpperCase()}),data:"default"==t?"":t})}),n}function n(e,n){var i,r=t.dom,a=t.selection;i=r.getParent(a.getNode(),"ol,ul"),i&&i.nodeName==e&&n!==!1||t.execCommand("UL"==e?"InsertUnorderedList":"InsertOrderedList"),n=n===!1?o[e]:n,o[e]=n,i=r.getParent(a.getNode(),"ol,ul"),i&&(r.setStyle(i,"listStyleType",n),i.removeAttribute("data-mce-style")),t.focus()}function i(e){var n=t.dom.getStyle(t.dom.getParent(t.selection.getNode(),"ol,ul"),"listStyleType")||"";e.control.items().each(function(t){t.active(t.settings.data===n)})}var r,a,o={};r=e("OL",t.getParam("advlist_number_styles","default,lower-alpha,lower-greek,lower-roman,upper-alpha,upper-roman")),a=e("UL",t.getParam("advlist_bullet_styles","default,circle,disc,square")),t.addButton("numlist",{type:"splitbutton",tooltip:"Numbered list",menu:r,onshow:i,onselect:function(t){n("OL",t.control.settings.data)},onclick:function(){n("OL",!1)}}),t.addButton("bullist",{type:"splitbutton",tooltip:"Bullet list",menu:a,onshow:i,onselect:function(t){n("UL",t.control.settings.data)},onclick:function(){n("UL",!1)}})}); -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/anchor/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("anchor",function(e){function t(){var t=e.selection.getNode();e.windowManager.open({title:"Anchor",body:{type:"textbox",name:"name",size:40,label:"Name",value:t.name||t.id},onsubmit:function(t){e.execCommand("mceInsertContent",!1,e.dom.createHTML("a",{id:t.data.name}))}})}e.addButton("anchor",{icon:"anchor",tooltip:"Anchor",onclick:t,stateSelector:"a:not([href])"}),e.addMenuItem("anchor",{icon:"anchor",text:"Anchor",context:"insert",onclick:t})}); -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/autolink/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("autolink",function(t){function e(t){o(t,-1,"(",!0)}function n(t){o(t,0,"",!0)}function i(t){o(t,-1,"",!1)}function o(t,e,n){var i,o,r,a,s,l,c,u,d;if(i=t.selection.getRng(!0).cloneRange(),i.startOffset<5){if(u=i.endContainer.previousSibling,!u){if(!i.endContainer.firstChild||!i.endContainer.firstChild.nextSibling)return;u=i.endContainer.firstChild.nextSibling}if(d=u.length,i.setStart(u,d),i.setEnd(u,d),i.endOffset<5)return;o=i.endOffset,a=u}else{if(a=i.endContainer,3!=a.nodeType&&a.firstChild){for(;3!=a.nodeType&&a.firstChild;)a=a.firstChild;3==a.nodeType&&(i.setStart(a,0),i.setEnd(a,a.nodeValue.length))}o=1==i.endOffset?2:i.endOffset-1-e}r=o;do i.setStart(a,o>=2?o-2:0),i.setEnd(a,o>=1?o-1:0),o-=1;while(" "!=i.toString()&&""!==i.toString()&&160!=i.toString().charCodeAt(0)&&o-2>=0&&i.toString()!=n);if(i.toString()==n||160==i.toString().charCodeAt(0)?(i.setStart(a,o),i.setEnd(a,r),o+=1):0===i.startOffset?(i.setStart(a,0),i.setEnd(a,r)):(i.setStart(a,o),i.setEnd(a,r)),l=i.toString(),"."==l.charAt(l.length-1)&&i.setEnd(a,r-1),l=i.toString(),c=l.match(/^(https?:\/\/|ssh:\/\/|ftp:\/\/|file:\/|www\.|(?:mailto:)?[A-Z0-9._%+\-]+@)(.+)$/i),c&&("www."==c[1]?c[1]="http://www.":/@$/.test(c[1])&&!/^mailto:/.test(c[1])&&(c[1]="mailto:"+c[1]),s=t.selection.getBookmark(),t.selection.setRng(i),t.execCommand("createlink",!1,c[1]+c[2]),t.selection.moveToBookmark(s),t.nodeChanged(),tinymce.Env.webkit)){t.selection.collapse(!1);var m=Math.min(a.length,r+1);i.setStart(a,m),i.setEnd(a,m),t.selection.setRng(i)}}t.on("keydown",function(e){return 13==e.keyCode?i(t):void 0}),tinymce.Env.ie||(t.on("keypress",function(n){return 41==n.which?e(t):void 0}),t.on("keyup",function(e){return 32==e.keyCode?n(t):void 0}))}); -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/autoresize/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("autoresize",function(e){function t(i){var a,s,r=e.getDoc(),g=r.body,u=r.documentElement,m=tinymce.DOM,l=n.autoresize_min_height;"setcontent"==i.type&&i.initial||e.plugins.fullscreen&&e.plugins.fullscreen.isFullscreen()||(s=tinymce.Env.ie?g.scrollHeight:tinymce.Env.webkit&&0===g.clientHeight?0:g.offsetHeight,s>n.autoresize_min_height&&(l=s),n.autoresize_max_height&&s>n.autoresize_max_height?(l=n.autoresize_max_height,g.style.overflowY="auto",u.style.overflowY="auto"):(g.style.overflowY="hidden",u.style.overflowY="hidden",g.scrollTop=0),l!==o&&(a=l-o,m.setStyle(m.get(e.id+"_ifr"),"height",l+"px"),o=l,tinymce.isWebKit&&0>a&&t(i)))}function i(e,n,o){setTimeout(function(){t({}),e--?i(e,n,o):o&&o()},n)}var n=e.settings,o=0;e.settings.inline||(n.autoresize_min_height=parseInt(e.getParam("autoresize_min_height",e.getElement().offsetHeight),10),n.autoresize_max_height=parseInt(e.getParam("autoresize_max_height",0),10),e.on("init",function(){e.dom.setStyle(e.getBody(),"paddingBottom",e.getParam("autoresize_bottom_margin",50)+"px")}),e.on("change setcontent paste keyup",t),e.getParam("autoresize_on_init",!0)&&e.on("init",function(){i(20,100,function(){i(5,1e3)})}),e.addCommand("mceAutoResize",t))}); -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/autosave/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("autosave",function(e){function t(e,t){var n={s:1e3,m:6e4};return e=/^(\d+)([ms]?)$/.exec(""+(e||t)),(e[2]?n[e[2]]:1)*parseInt(e,10)}function n(){var e=parseInt(l.getItem(d+"time"),10)||0;return(new Date).getTime()-e>v.autosave_retention?(a(!1),!1):!0}function a(t){l.removeItem(d+"draft"),l.removeItem(d+"time"),t!==!1&&e.fire("RemoveDraft")}function r(){c()||(l.setItem(d+"draft",e.getContent({format:"raw",no_events:!0})),l.setItem(d+"time",(new Date).getTime()),e.fire("StoreDraft"))}function o(){n()&&(e.setContent(l.getItem(d+"draft"),{format:"raw"}),e.fire("RestoreDraft"))}function i(){m||(setInterval(function(){e.removed||r()},v.autosave_interval),m=!0)}function s(){var t=this;t.disabled(!n()),e.on("StoreDraft RestoreDraft RemoveDraft",function(){t.disabled(!n())}),i()}function u(){e.undoManager.beforeChange(),o(),a(),e.undoManager.add()}function f(){var e;return tinymce.each(tinymce.editors,function(t){t.plugins.autosave&&t.plugins.autosave.storeDraft(),!e&&t.isDirty()&&t.getParam("autosave_ask_before_unload",!0)&&(e=t.translate("You have unsaved changes are you sure you want to navigate away?"))}),e}function c(t){var n=e.settings.forced_root_block;return t=tinymce.trim("undefined"==typeof t?e.getBody().innerHTML:t),""===t||new RegExp("^<"+n+"[^>]*>(( | |[ ]|]*>)+?|)|
    $","i").test(t)}var d,m,v=e.settings,l=tinymce.util.LocalStorage;d=v.autosave_prefix||"tinymce-autosave-{path}{query}-{id}-",d=d.replace(/\{path\}/g,document.location.pathname),d=d.replace(/\{query\}/g,document.location.search),d=d.replace(/\{id\}/g,e.id),v.autosave_interval=t(v.autosave_interval,"30s"),v.autosave_retention=t(v.autosave_retention,"20m"),e.addButton("restoredraft",{title:"Restore last draft",onclick:u,onPostRender:s}),e.addMenuItem("restoredraft",{text:"Restore last draft",onclick:u,onPostRender:s,context:"file"}),e.settings.autosave_restore_when_empty!==!1&&(e.on("init",function(){n()&&c()&&o()}),e.on("saveContent",function(){a()})),window.onbeforeunload=f,this.hasDraft=n,this.storeDraft=r,this.restoreDraft=o,this.removeDraft=a,this.isEmpty=c}); -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/code/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("code",function(e){function o(){e.windowManager.open({title:"Source code",body:{type:"textbox",name:"code",multiline:!0,minWidth:e.getParam("code_dialog_width",600),minHeight:e.getParam("code_dialog_height",Math.min(tinymce.DOM.getViewPort().h-200,500)),value:e.getContent({source_view:!0}),spellcheck:!1,style:"direction: ltr; text-align: left"},onSubmit:function(o){e.focus(),e.undoManager.transact(function(){e.setContent(o.data.code)}),e.selection.setCursorLocation(),e.nodeChanged()}})}e.addCommand("mceCodeEditor",o),e.addButton("code",{icon:"code",tooltip:"Source code",onclick:o}),e.addMenuItem("code",{icon:"code",text:"Source code",context:"tools",onclick:o})}); -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/contextmenu/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("contextmenu",function(e){var n,t=e.settings.contextmenu_never_use_native;e.on("contextmenu",function(o){var i;if(!o.ctrlKey||t){if(o.preventDefault(),i=e.settings.contextmenu||"link image inserttable | cell row column deletetable",n)n.show();else{var c=[];tinymce.each(i.split(/[ ,]/),function(n){var t=e.menuItems[n];"|"==n&&(t={text:n}),t&&(t.shortcut="",c.push(t))});for(var a=0;a'}),t+=""}),t+=""}var i=[["cool","cry","embarassed","foot-in-mouth"],["frown","innocent","kiss","laughing"],["money-mouth","sealed","smile","surprised"],["tongue-out","undecided","wink","yell"]];t.addButton("emoticons",{type:"panelbutton",panel:{autohide:!0,html:n,onclick:function(e){var n=t.dom.getParent(e.target,"a");n&&(t.insertContent(''),this.hide())}},tooltip:"Emoticons"})}); -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/example/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("example",function(t){t.addButton("example",{text:"My button",icon:!1,onclick:function(){t.windowManager.open({title:"Example plugin",body:[{type:"textbox",name:"title",label:"Title"}],onsubmit:function(e){t.insertContent("Title: "+e.data.title)}})}}),t.addMenuItem("example",{text:"Example plugin",context:"tools",onclick:function(){t.windowManager.open({title:"TinyMCE site",url:"http://www.tinymce.com",width:800,height:600,buttons:[{text:"Close",onclick:"close"}]})}})}); -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/example_dependency/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("example_dependency",function(){},["example"]); -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/fullscreen/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("fullscreen",function(e){function t(){var e,t,n=window,i=document,l=i.body;return l.offsetWidth&&(e=l.offsetWidth,t=l.offsetHeight),n.innerWidth&&n.innerHeight&&(e=n.innerWidth,t=n.innerHeight),{w:e,h:t}}function n(){function n(){d.setStyle(a,"height",t().h-(h.clientHeight-a.clientHeight))}var u,h,a,f,m=document.body,g=document.documentElement;s=!s,h=e.getContainer(),u=h.style,a=e.getContentAreaContainer().firstChild,f=a.style,s?(i=f.width,l=f.height,f.width=f.height="100%",c=u.width,o=u.height,u.width=u.height="",d.addClass(m,"mce-fullscreen"),d.addClass(g,"mce-fullscreen"),d.addClass(h,"mce-fullscreen"),d.bind(window,"resize",n),n(),r=n):(f.width=i,f.height=l,c&&(u.width=c),o&&(u.height=o),d.removeClass(m,"mce-fullscreen"),d.removeClass(g,"mce-fullscreen"),d.removeClass(h,"mce-fullscreen"),d.unbind(window,"resize",r)),e.fire("FullscreenStateChanged",{state:s})}var i,l,r,c,o,s=!1,d=tinymce.DOM;return e.settings.inline?void 0:(e.on("init",function(){e.addShortcut("Ctrl+Alt+F","",n)}),e.on("remove",function(){r&&d.unbind(window,"resize",r)}),e.addCommand("mceFullScreen",n),e.addMenuItem("fullscreen",{text:"Fullscreen",shortcut:"Ctrl+Alt+F",selectable:!0,onClick:n,onPostRender:function(){var t=this;e.on("FullscreenStateChanged",function(e){t.active(e.state)})},context:"view"}),e.addButton("fullscreen",{tooltip:"Fullscreen",shortcut:"Ctrl+Alt+F",onClick:n,onPostRender:function(){var t=this;e.on("FullscreenStateChanged",function(e){t.active(e.state)})}}),{isFullscreen:function(){return s}})}); -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/hr/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("hr",function(e){e.addCommand("InsertHorizontalRule",function(){e.execCommand("mceInsertContent",!1,"
    ")}),e.addButton("hr",{icon:"hr",tooltip:"Horizontal line",cmd:"InsertHorizontalRule"}),e.addMenuItem("hr",{icon:"hr",text:"Horizontal line",cmd:"InsertHorizontalRule",context:"insert"})}); -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/importcss/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("importcss",function(t){function e(t){return"string"==typeof t?function(e){return-1!==e.indexOf(t)}:t instanceof RegExp?function(e){return t.test(e)}:t}function n(e,n){function i(t,e){var o,l=t.href;if((e||c[l])&&(!n||n(l))){s(t.imports,function(t){i(t,!0)});try{o=t.cssRules||t.rules}catch(a){}s(o,function(t){t.styleSheet?i(t.styleSheet,!0):t.selectorText&&s(t.selectorText.split(","),function(t){r.push(tinymce.trim(t))})})}}var r=[],c={};s(t.contentCSS,function(t){c[t]=!0});try{s(e.styleSheets,function(t){i(t)})}catch(o){}return r}function i(e){var n,i=/^(?:([a-z0-9\-_]+))?(\.[a-z0-9_\-\.]+)$/i.exec(e);if(i){var r=i[1],s=i[2].substr(1).split(".").join(" ");return i[1]?(n={title:e},t.schema.getTextBlockElements()[r]?n.block=r:t.schema.getBlockElements()[r]?n.selector=r:n.inline=r):i[2]&&(n={inline:"span",title:e.substr(1),classes:s}),t.settings.importcss_merge_classes!==!1?n.classes=s:n.attributes={"class":s},n}}var r=this,s=tinymce.each;t.on("renderFormatsMenu",function(c){var o=t.settings,l={},a=o.importcss_selector_converter||i,f=e(o.importcss_selector_filter);t.settings.importcss_append||t.settings.style_formats||c.control.items().remove();var m=[];tinymce.each(o.importcss_groups,function(t){t=tinymce.extend({},t),t.filter=e(t.filter),m.push(t)}),s(n(t.getDoc(),e(o.importcss_file_filter)),function(e){if(-1===e.indexOf(".mce-")&&!l[e]&&(!f||f(e))){var n,i=a.call(r,e);if(i){var s=i.name||tinymce.DOM.uniqueId();if(m)for(var o=0;o'+n+"";var i=e.dom.getParent(e.selection.getStart(),"time");if(i)return e.dom.setOuterHTML(i,n),void 0}e.insertContent(n)}var n,r,i="Sun Mon Tue Wed Thu Fri Sat Sun".split(" "),c="Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sunday".split(" "),m="Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec".split(" "),u="January February March April May June July August September October November December".split(" "),d=[];e.addCommand("mceInsertDate",function(){a(e.getParam("insertdatetime_dateformat",e.translate("%Y-%m-%d")))}),e.addCommand("mceInsertTime",function(){a(e.getParam("insertdatetime_timeformat",e.translate("%H:%M:%S")))}),e.addButton("inserttime",{type:"splitbutton",title:"Insert time",onclick:function(){a(n||r)},menu:d}),tinymce.each(e.settings.insertdatetime_formats||["%H:%M:%S","%Y-%m-%d","%I:%M:%S %p","%D"],function(e){r||(r=e),d.push({text:t(e),onclick:function(){n=e,a(e)}})}),e.addMenuItem("insertdatetime",{icon:"date",text:"Insert date/time",menu:d,context:"insert"})}); -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/application/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/application/config/constants.php: -------------------------------------------------------------------------------- 1 | '', 5 | 'xhtml1-strict' => '', 6 | 'xhtml1-trans' => '', 7 | 'xhtml1-frame' => '', 8 | 'html5' => '', 9 | 'html4-strict' => '', 10 | 'html4-trans' => '', 11 | 'html4-frame' => '' 12 | ); 13 | 14 | /* End of file doctypes.php */ 15 | /* Location: ./application/config/doctypes.php */ -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/application/config/foreign_chars.php: -------------------------------------------------------------------------------- 1 | 'ae', 12 | '/ö|œ/' => 'oe', 13 | '/ü/' => 'ue', 14 | '/Ä/' => 'Ae', 15 | '/Ü/' => 'Ue', 16 | '/Ö/' => 'Oe', 17 | '/À|Á|Â|Ã|Ä|Å|Ǻ|Ā|Ă|Ą|Ǎ/' => 'A', 18 | '/à|á|â|ã|å|ǻ|ā|ă|ą|ǎ|ª/' => 'a', 19 | '/Ç|Ć|Ĉ|Ċ|Č/' => 'C', 20 | '/ç|ć|ĉ|ċ|č/' => 'c', 21 | '/Ð|Ď|Đ/' => 'D', 22 | '/ð|ď|đ/' => 'd', 23 | '/È|É|Ê|Ë|Ē|Ĕ|Ė|Ę|Ě/' => 'E', 24 | '/è|é|ê|ë|ē|ĕ|ė|ę|ě/' => 'e', 25 | '/Ĝ|Ğ|Ġ|Ģ/' => 'G', 26 | '/ĝ|ğ|ġ|ģ/' => 'g', 27 | '/Ĥ|Ħ/' => 'H', 28 | '/ĥ|ħ/' => 'h', 29 | '/Ì|Í|Î|Ï|Ĩ|Ī|Ĭ|Ǐ|Į|İ/' => 'I', 30 | '/ì|í|î|ï|ĩ|ī|ĭ|ǐ|į|ı/' => 'i', 31 | '/Ĵ/' => 'J', 32 | '/ĵ/' => 'j', 33 | '/Ķ/' => 'K', 34 | '/ķ/' => 'k', 35 | '/Ĺ|Ļ|Ľ|Ŀ|Ł/' => 'L', 36 | '/ĺ|ļ|ľ|ŀ|ł/' => 'l', 37 | '/Ñ|Ń|Ņ|Ň/' => 'N', 38 | '/ñ|ń|ņ|ň|ʼn/' => 'n', 39 | '/Ò|Ó|Ô|Õ|Ō|Ŏ|Ǒ|Ő|Ơ|Ø|Ǿ/' => 'O', 40 | '/ò|ó|ô|õ|ō|ŏ|ǒ|ő|ơ|ø|ǿ|º/' => 'o', 41 | '/Ŕ|Ŗ|Ř/' => 'R', 42 | '/ŕ|ŗ|ř/' => 'r', 43 | '/Ś|Ŝ|Ş|Š/' => 'S', 44 | '/ś|ŝ|ş|š|ſ/' => 's', 45 | '/Ţ|Ť|Ŧ/' => 'T', 46 | '/ţ|ť|ŧ/' => 't', 47 | '/Ù|Ú|Û|Ũ|Ū|Ŭ|Ů|Ű|Ų|Ư|Ǔ|Ǖ|Ǘ|Ǚ|Ǜ/' => 'U', 48 | '/ù|ú|û|ũ|ū|ŭ|ů|ű|ų|ư|ǔ|ǖ|ǘ|ǚ|ǜ/' => 'u', 49 | '/Ý|Ÿ|Ŷ/' => 'Y', 50 | '/ý|ÿ|ŷ/' => 'y', 51 | '/Ŵ/' => 'W', 52 | '/ŵ/' => 'w', 53 | '/Ź|Ż|Ž/' => 'Z', 54 | '/ź|ż|ž/' => 'z', 55 | '/Æ|Ǽ/' => 'AE', 56 | '/ß/'=> 'ss', 57 | '/IJ/' => 'IJ', 58 | '/ij/' => 'ij', 59 | '/Œ/' => 'OE', 60 | '/ƒ/' => 'f' 61 | ); 62 | 63 | /* End of file foreign_chars.php */ 64 | /* Location: ./application/config/foreign_chars.php */ -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/application/config/migration.php: -------------------------------------------------------------------------------- 1 | migration->latest() this is the version that schema will 21 | | be upgraded / downgraded to. 22 | | 23 | */ 24 | $config['migration_version'] = 0; 25 | 26 | 27 | /* 28 | |-------------------------------------------------------------------------- 29 | | Migrations Path 30 | |-------------------------------------------------------------------------- 31 | | 32 | | Path to your migrations folder. 33 | | Typically, it will be within your application path. 34 | | Also, writing permission is required within the migrations path. 35 | | 36 | */ 37 | $config['migration_path'] = APPPATH . 'migrations/'; 38 | 39 | 40 | /* End of file migration.php */ 41 | /* Location: ./application/config/migration.php */ -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/application/config/profiler.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/application/errors/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 404 Page Not Found 5 | 55 | 56 | 57 |
    58 |

    59 | 60 |
    61 | 62 | -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/application/errors/error_db.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Database Error 5 | 55 | 56 | 57 |
    58 |

    59 | 60 |
    61 | 62 | -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/application/errors/error_general.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Error 5 | 55 | 56 | 57 |
    58 |

    59 | 60 |
    61 | 62 | -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/application/errors/error_php.php: -------------------------------------------------------------------------------- 1 |
    2 | 3 |

    A PHP Error was encountered

    4 | 5 |

    Severity:

    6 |

    Message:

    7 |

    Filename:

    8 |

    Line Number:

    9 | 10 |
    -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/application/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/application/helpers/jbimages_helper.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/application/language/english/jbstrings_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/application/language/french/jbstrings_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/application/language/russian/jbstrings_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | JustBoil's Result Page 6 | 13 | 16 | 17 | 18 | 19 | 20 | Result: 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/application/views/blank.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | JustBoil's Blank 6 | 9 | 10 | 11 | 12 | 13 |

    14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/application/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/system/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/system/core/Controller.php: -------------------------------------------------------------------------------- 1 | $class) 45 | { 46 | $this->$var =& load_class($class); 47 | } 48 | 49 | $this->load =& load_class('Loader', 'core'); 50 | 51 | $this->load->initialize(); 52 | 53 | log_message('debug', "Controller Class Initialized"); 54 | } 55 | 56 | public static function &get_instance() 57 | { 58 | return self::$instance; 59 | } 60 | } 61 | // END Controller class 62 | 63 | /* End of file Controller.php */ 64 | /* Location: ./system/core/Controller.php */ -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/system/core/Model.php: -------------------------------------------------------------------------------- 1 | $key; 52 | } 53 | } 54 | // END Model Class 55 | 56 | /* End of file Model.php */ 57 | /* Location: ./system/core/Model.php */ -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/system/helpers/language_helper.php: -------------------------------------------------------------------------------- 1 | lang->line($line); 46 | 47 | if ($id != '') 48 | { 49 | $line = '"; 50 | } 51 | 52 | return $line; 53 | } 54 | } 55 | 56 | // ------------------------------------------------------------------------ 57 | /* End of file language_helper.php */ 58 | /* Location: ./system/helpers/language_helper.php */ -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/system/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/system/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/system/language/english/upload_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/ci/system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/css/dialog-v4.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Justboil.me - a TinyMCE image upload plugin 3 | * jbimages/css/dialog-v4.css 4 | * 5 | * Released under Creative Commons Attribution 3.0 Unported License 6 | * 7 | * License: http://creativecommons.org/licenses/by/3.0/ 8 | * Plugin info: http://justboil.me/ 9 | * Author: Viktor Kuzhelnyi 10 | * 11 | * Version: 2.3 released 23/06/2013 12 | */ 13 | 14 | body {font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; -text-align:center; padding:0 10px 0 5px;} 15 | h2 {color:#666; visibility:hidden;} 16 | 17 | .form-inline input { 18 | display: inline-block; 19 | *display: inline; 20 | margin-bottom: 0; 21 | vertical-align: middle; 22 | *zoom: 1; 23 | } 24 | 25 | #upload_target {border:0; margin:0; padding:0; width:0; height:0; display:none;} 26 | 27 | .upload_infobar {display:none; font-size:12pt; background:#fff; margin-top:10px; border-radius:5px;} 28 | .upload_infobar img.spinner {margin-right:10px;} 29 | .upload_infobar a {color:#0000cc;} 30 | #upload_additional_info {font-size:10pt; padding-left:26px;} 31 | 32 | #the_plugin_name {margin:15px 0 0 0;} 33 | #the_plugin_name, #the_plugin_name a {color:#777; font-size:9px;} 34 | #the_plugin_name a {text-decoration:none;} 35 | #the_plugin_name a:hover {color:#333;} 36 | 37 | /* this class makes the upload script output visible */ 38 | .upload_target_visible {width:100%!important; height:200px!important; border:1px solid #000!important; display:block!important} -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/dialog-v4.htm: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Upload an image 6 | 7 | 8 | 9 | 10 | 11 |
    12 | 13 |
    Upload in progress…
    14 |
    15 | 16 |

    17 | 18 |

    19 | 20 |

    JustBoil.me Images Plugin

    21 | 22 |
    23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/dialog.htm: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {#jbimages_dlg.title} 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
    14 | 15 |

    {#jbimages_dlg.select_an_image}

    16 | 17 |
    {#jbimages_dlg.upload_in_progress}…
    18 |
    19 | 20 |

    21 | 22 | 23 |

    24 | 25 |

    JustBoil.me Images Plugin

    26 | 27 | 28 |
    29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.PluginManager.requireLangPack('jbimages');tinymce.create('tinymce.plugins.jbImagesPlugin',{init:function(ed,url){ed.addCommand('jbImages',function(){var unixtime_ms=new Date().getTime();ed.windowManager.open({file:url+'/dialog.htm?z'+unixtime_ms,width:330+parseInt(ed.getLang('jbimages.delta_width',0)),height:155+parseInt(ed.getLang('jbimages.delta_height',0)),inline:1},{plugin_url:url})});ed.addButton('jbimages',{title:'jbimages.desc',cmd:'jbImages',image:url+'/img/jbimages-bw.gif'});ed.onNodeChange.add(function(ed,cm,n){cm.setActive('jbimages',n.nodeName=='IMG')})},createControl:function(n,cm){return null},getInfo:function(){return{longname:'JustBoil.me Images Plugin',author:'Viktor Kuzhelnyi',authorurl:'http://justboil.me/',infourl:'http://justboil.me/',version:"2.3"}}});tinymce.PluginManager.add('jbimages',tinymce.plugins.jbImagesPlugin)})(); -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/img/jbimages-bw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/js/admin/tinymce/plugins/jbimages/img/jbimages-bw.gif -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/js/admin/tinymce/plugins/jbimages/img/spinner.gif -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/is_allowed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/js/admin/tinymce/plugins/jbimages/is_allowed.php -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/langs/en.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Justboil.me - a TinyMCE image upload plugin 3 | * jbimages/langs/en.js 4 | * 5 | * Released under Creative Commons Attribution 3.0 Unported License 6 | * 7 | * License: http://creativecommons.org/licenses/by/3.0/ 8 | * Plugin info: http://justboil.me/ 9 | * Author: Viktor Kuzhelnyi 10 | * 11 | * Version: 2.3 released 23/06/2013 12 | */ 13 | 14 | tinyMCE.addI18n('en.jbimages',{ 15 | desc : 'Upload an image' 16 | }); 17 | -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Justboil.me - a TinyMCE image upload plugin 3 | * jbimages/langs/en_dlg.js 4 | * 5 | * Released under Creative Commons Attribution 3.0 Unported License 6 | * 7 | * License: http://creativecommons.org/licenses/by/3.0/ 8 | * Plugin info: http://justboil.me/ 9 | * Author: Viktor Kuzhelnyi 10 | * 11 | * Version: 2.3 released 23/06/2013 12 | */ 13 | 14 | tinyMCE.addI18n('en.jbimages_dlg',{ 15 | title : 'Upload an image from computer', 16 | select_an_image : 'Select an image', 17 | upload_in_progress : 'Upload in progress', 18 | upload_complete : 'Upload Complete', 19 | upload : 'Upload', 20 | longer_than_usual : 'This is taking longer than usual.', 21 | maybe_an_error : 'An error may have occurred.', 22 | view_output : 'View script\'s output', 23 | 24 | lang_id : 'english' /* php-side language files are in: ci/application/language/{lang_id}; and in ci/system/language/{lang_id} */ 25 | }); 26 | -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/langs/fr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Justboil.me - a TinyMCE image upload plugin 3 | * jbimages/langs/fr.js 4 | * 5 | * Released under Creative Commons Attribution 3.0 Unported License 6 | * 7 | * License: http://creativecommons.org/licenses/by/3.0/ 8 | * Plugin info: http://justboil.me/ 9 | * Author: Viktor Kuzhelnyi 10 | * 11 | * Version: 2.3 released 23/06/2013 12 | */ 13 | 14 | tinyMCE.addI18n('fr.jbimages',{ 15 | desc : 'T\u00E9l\u00E9charger une image' 16 | }); -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/langs/fr_dlg.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Justboil.me - a TinyMCE image upload plugin 3 | * jbimages/langs/fr_dlg.js 4 | * 5 | * Released under Creative Commons Attribution 3.0 Unported License 6 | * 7 | * License: http://creativecommons.org/licenses/by/3.0/ 8 | * Plugin info: http://justboil.me/ 9 | * Author: Viktor Kuzhelnyi 10 | * 11 | * Version: 2.3 released 23/06/2013 12 | */ 13 | 14 | tinyMCE.addI18n('fr.jbimages_dlg',{ 15 | title : 'T\u00E9l\u00E9charger une image depuis votre ordinateur', 16 | select_an_image : 'S\u00E9lectionnez une image', 17 | upload_in_progress : 'T\u00E9l\u00E9chargement en cours', 18 | upload_complete : 'T\u00E9l\u00E9chargement termin\u00E9', 19 | upload : 'T\u00E9l\u00E9charger', 20 | longer_than_usual : 'C\'est plus long que pr\u00E9vu.', 21 | maybe_an_error : 'Une erreur est probablement survenue.', 22 | view_output : 'Voir la sortie du script', 23 | 24 | lang_id : 'french' /* php-side language files are in: ci/application/language/{lang_id}; and in ci/system/language/{lang_id} */ 25 | }); -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/langs/ru.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Justboil.me - a TinyMCE image upload plugin 3 | * jbimages/langs/ru.js 4 | * 5 | * Released under Creative Commons Attribution 3.0 Unported License 6 | * 7 | * License: http://creativecommons.org/licenses/by/3.0/ 8 | * Plugin info: http://justboil.me/ 9 | * Author: Viktor Kuzhelnyi 10 | * 11 | * Version: 2.3 released 23/06/2013 12 | */ 13 | 14 | tinyMCE.addI18n('ru.jbimages',{ 15 | desc : '\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435', 16 | delta_width : 10 17 | }); 18 | -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/langs/ru_dlg.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Justboil.me - a TinyMCE image upload plugin 3 | * jbimages/langs/ru_dlg.js 4 | * 5 | * Released under Creative Commons Attribution 3.0 Unported License 6 | * 7 | * License: http://creativecommons.org/licenses/by/3.0/ 8 | * Plugin info: http://justboil.me/ 9 | * Author: Viktor Kuzhelnyi 10 | * 11 | * Version: 2.3 released 23/06/2013 12 | */ 13 | 14 | tinyMCE.addI18n('ru.jbimages_dlg',{ 15 | title : '\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0441 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u0430', 16 | select_an_image : '\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435', 17 | upload_in_progress : '\u0412\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430', 18 | upload_complete : '\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430', 19 | upload : '\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c', 20 | longer_than_usual : '\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0437\u0430\u043d\u0438\u043c\u0430\u0435\u0442 \u0431\u043e\u043b\u044c\u0448\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u0438, \u0447\u0435\u043c \u043e\u0431\u044b\u0447\u043d\u043e.', 21 | maybe_an_error : '\u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430.', 22 | view_output : '\u041f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0432\u044b\u0434\u0430\u0447\u0443 \u0441\u043a\u0440\u0438\u043f\u0442\u0430', 23 | 24 | lang_id : 'russian' /* php-side language files are in: ci/application/language/{lang_id}; */ 25 | }); 26 | -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/plugin.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Justboil.me - a TinyMCE image upload plugin 3 | * jbimages/plugin.js 4 | * 5 | * Released under Creative Commons Attribution 3.0 Unported License 6 | * 7 | * License: http://creativecommons.org/licenses/by/3.0/ 8 | * Plugin info: http://justboil.me/ 9 | * Author: Viktor Kuzhelnyi 10 | * 11 | * Version: 2.3 released 23/06/2013 12 | */ 13 | 14 | tinymce.PluginManager.add('jbimages', function(editor, url) { 15 | 16 | function jbBox() { 17 | editor.windowManager.open({ 18 | title: 'Upload an image', 19 | file : url + '/dialog-v4.htm', 20 | width : 350, 21 | height: 135, 22 | buttons: [{ 23 | text: 'Upload', 24 | classes:'widget btn primary first abs-layout-item', 25 | disabled : true, 26 | onclick: 'close' 27 | }, 28 | { 29 | text: 'Close', 30 | onclick: 'close' 31 | }] 32 | }); 33 | } 34 | 35 | // Add a button that opens a window 36 | editor.addButton('jbimages', { 37 | tooltip: 'Upload an image', 38 | icon : 'image', 39 | text: 'Upload', 40 | onclick: jbBox 41 | }); 42 | 43 | // Adds a menu item to the tools menu 44 | editor.addMenuItem('jbimages', { 45 | text: 'Upload image', 46 | icon : 'image', 47 | context: 'insert', 48 | onclick: jbBox 49 | }); 50 | }); -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add('jbimages',function(editor,url){function jbBox(){editor.windowManager.open({title:'Upload an image',file:url+'/dialog-v4.htm',width:350,height:135,buttons:[{text:'Upload',classes:'widget btn primary first abs-layout-item',disabled:true,onclick:'close'},{text:'Close',onclick:'close'}]})}editor.addButton('jbimages',{tooltip:'Upload an image',icon:'image',text:'Upload',onclick:jbBox});editor.addMenuItem('jbimages',{text:'Upload image',icon:'image',context:'insert',onclick:jbBox})}); -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/jbimages/readme: -------------------------------------------------------------------------------- 1 | |------------| 2 | | | 3 | | README | 4 | | | 5 | |------------| 6 | 7 | 8 | Docs & stuff at: http://justboil.me 9 | 10 | -- 11 | Cheers, and have a nice day! )) -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/legacyoutput/plugin.min.js: -------------------------------------------------------------------------------- 1 | !function(e){e.on("AddEditor",function(e){e.editor.settings.inline_styles=!1}),e.PluginManager.add("legacyoutput",function(t){t.on("init",function(){var n="p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li,table,img",i=e.explode(t.settings.font_size_style_values),o=t.schema;t.formatter.register({alignleft:{selector:n,attributes:{align:"left"}},aligncenter:{selector:n,attributes:{align:"center"}},alignright:{selector:n,attributes:{align:"right"}},alignjustify:{selector:n,attributes:{align:"justify"}},bold:[{inline:"b",remove:"all"},{inline:"strong",remove:"all"},{inline:"span",styles:{fontWeight:"bold"}}],italic:[{inline:"i",remove:"all"},{inline:"em",remove:"all"},{inline:"span",styles:{fontStyle:"italic"}}],underline:[{inline:"u",remove:"all"},{inline:"span",styles:{textDecoration:"underline"},exact:!0}],strikethrough:[{inline:"strike",remove:"all"},{inline:"span",styles:{textDecoration:"line-through"},exact:!0}],fontname:{inline:"font",attributes:{face:"%value"}},fontsize:{inline:"font",attributes:{size:function(t){return e.inArray(i,t.value)+1}}},forecolor:{inline:"font",attributes:{color:"%value"}},hilitecolor:{inline:"font",styles:{backgroundColor:"%value"}}}),e.each("b,i,u,strike".split(","),function(e){o.addValidElements(e+"[*]")}),o.getElementRule("font")||o.addValidElements("font[face|size|color|style]"),e.each(n.split(","),function(e){var t=o.getElementRule(e);t&&(t.attributes.align||(t.attributes.align={},t.attributesOrder.push("align")))})})})}(tinymce); -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/media/moxieplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/js/admin/tinymce/plugins/media/moxieplayer.swf -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/nonbreaking/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("nonbreaking",function(e){var t=e.getParam("nonbreaking_force_tab");if(e.addCommand("mceNonBreaking",function(){e.insertContent(e.plugins.visualchars&&e.plugins.visualchars.state?' ':" ")}),e.addButton("nonbreaking",{title:"Insert nonbreaking space",cmd:"mceNonBreaking"}),e.addMenuItem("nonbreaking",{text:"Nonbreaking space",cmd:"mceNonBreaking",context:"insert"}),t){var n=+t>1?+t:3;e.on("keydown",function(t){if(9==t.keyCode){if(t.shiftKey)return;t.preventDefault();for(var i=0;n>i;i++)e.execCommand("mceNonBreaking")}})}}); -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/pagebreak/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("pagebreak",function(e){var a="mce-pagebreak",t=e.getParam("pagebreak_separator",""),n=new RegExp(t.replace(/[\?\.\*\[\]\(\)\{\}\+\^\$\:]/g,function(e){return"\\"+e}),"gi"),r='';e.addCommand("mcePageBreak",function(){e.settings.pagebreak_split_block?e.insertContent("

    "+r+"

    "):e.insertContent(r)}),e.addButton("pagebreak",{title:"Page break",cmd:"mcePageBreak"}),e.addMenuItem("pagebreak",{text:"Page break",icon:"pagebreak",cmd:"mcePageBreak",context:"insert"}),e.on("ResolveName",function(t){"IMG"==t.target.nodeName&&e.dom.hasClass(t.target,a)&&(t.name="pagebreak")}),e.on("click",function(t){t=t.target,"IMG"===t.nodeName&&e.dom.hasClass(t,a)&&e.selection.select(t)}),e.on("BeforeSetContent",function(e){e.content=e.content.replace(n,r)}),e.on("PreInit",function(){e.serializer.addNodeFilter("img",function(a){for(var n,r,c=a.length;c--;)if(n=a[c],r=n.attr("class"),r&&-1!==r.indexOf("mce-pagebreak")){var o=n.parent;if(e.schema.getBlockElements()[o.name]&&e.settings.pagebreak_split_block){o.type=3,o.value=t,o.raw=!0,n.remove();continue}n.type=3,n.value=t,n.raw=!0}})})}); -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/preview/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("preview",function(e){var t=e.settings;e.addCommand("mcePreview",function(){e.windowManager.open({title:"Preview",width:parseInt(e.getParam("plugin_preview_width","650"),10),height:parseInt(e.getParam("plugin_preview_height","500"),10),html:'',buttons:{text:"Close",onclick:function(){this.parent().parent().close()}},onPostRender:function(){var i,n=this.getEl("body").firstChild.contentWindow.document,a="";tinymce.each(e.contentCSS,function(t){a+=''});var d=t.body_id||"tinymce";-1!=d.indexOf("=")&&(d=e.getParam("body_id","","hash"),d=d[e.id]||d);var r=t.body_class||"";-1!=r.indexOf("=")&&(r=e.getParam("body_class","","hash"),r=r[e.id]||""),i=""+a+""+''+e.getContent()+""+"",n.open(),n.write(i),n.close()}})}),e.addButton("preview",{title:"Preview",cmd:"mcePreview"}),e.addMenuItem("preview",{text:"Preview",cmd:"mcePreview",context:"view"})}); -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/print/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("print",function(t){t.addCommand("mcePrint",function(){t.getWin().print()}),t.addButton("print",{title:"Print",cmd:"mcePrint"}),t.addShortcut("Ctrl+P","","mcePrint"),t.addMenuItem("print",{text:"Print",cmd:"mcePrint",icon:"print",shortcut:"Ctrl+P",context:"file"})}); -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/save/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("save",function(e){function t(){var t,n;return t=tinymce.DOM.getParent(e.id,"form"),!e.getParam("save_enablewhendirty",!0)||e.isDirty()?(tinymce.triggerSave(),(n=e.getParam("save_onsavecallback"))?(e.execCallback("save_onsavecallback",e)&&(e.startContent=tinymce.trim(e.getContent({format:"raw"})),e.nodeChanged()),void 0):(t?(e.isNotDirty=!0,(!t.onsubmit||t.onsubmit())&&("function"==typeof t.submit?t.submit():e.windowManager.alert("Error: Form submit field collision.")),e.nodeChanged()):e.windowManager.alert("Error: No form element found."),void 0)):void 0}function n(){var t,n=tinymce.trim(e.startContent);return(t=e.getParam("save_oncancelcallback"))?(e.execCallback("save_oncancelcallback",e),void 0):(e.setContent(n),e.undoManager.clear(),e.nodeChanged(),void 0)}function i(){var t=this;e.on("nodeChange",function(){t.disabled(e.getParam("save_enablewhendirty",!0)&&!e.isDirty())})}e.addCommand("mceSave",t),e.addCommand("mceCancel",n),e.addButton("save",{icon:"save",text:"Save",cmd:"mceSave",disabled:!0,onPostRender:i}),e.addButton("cancel",{text:"Cancel",icon:!1,cmd:"mceCancel",disabled:!0,onPostRender:i}),e.addShortcut("ctrl+s","","mceSave")}); -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/tabfocus/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("tabfocus",function(e){function n(e){9===e.keyCode&&e.preventDefault()}function t(n){function t(n){function t(e){return"BODY"===e.nodeName||"hidden"!=e.type&&"none"!=e.style.display&&"hidden"!=e.style.visibility&&t(e.parentNode)}function r(e){return e.tabIndex||"INPUT"==e.nodeName||"TEXTAREA"==e.nodeName}function a(e){return!r(e)&&"-1"!=e.getAttribute("tabindex")&&t(e)}if(d=i.select(":input:enabled,*[tabindex]:not(iframe)"),o(d,function(n,t){return n.id==e.id?(u=t,!1):void 0}),n>0){for(c=u+1;c=0;c--)if(a(d[c]))return d[c];return null}var u,d,a,c;if(9===n.keyCode&&(a=r(e.getParam("tab_focus",e.getParam("tabfocus_elements",":prev,:next"))),1==a.length&&(a[1]=a[0],a[0]=":prev"),d=n.shiftKey?":prev"==a[0]?t(-1):i.get(a[0]):":next"==a[1]?t(1):i.get(a[1]))){var f=tinymce.get(d.id||d.name);d.id&&f?f.focus():window.setTimeout(function(){tinymce.Env.webkit||window.focus(),d.focus()},10),n.preventDefault()}}var i=tinymce.DOM,o=tinymce.each,r=tinymce.explode;e.on("init",function(){e.inline&&tinymce.DOM.setAttrib(e.getBody(),"tabIndex",null)}),e.on("keyup",n),tinymce.Env.gecko?e.on("keypress keydown",t):e.on("keydown",t)}); -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/textcolor/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("textcolor",function(e){function o(){var o,t,r=[];for(t=e.settings.textcolor_map||["000000","Black","993300","Burnt orange","333300","Dark olive","003300","Dark green","003366","Dark azure","000080","Navy Blue","333399","Indigo","333333","Very dark gray","800000","Maroon","FF6600","Orange","808000","Olive","008000","Green","008080","Teal","0000FF","Blue","666699","Grayish blue","808080","Gray","FF0000","Red","FF9900","Amber","99CC00","Yellow green","339966","Sea green","33CCCC","Turquoise","3366FF","Royal blue","800080","Purple","999999","Medium gray","FF00FF","Magenta","FFCC00","Gold","FFFF00","Yellow","00FF00","Lime","00FFFF","Aqua","00CCFF","Sky blue","993366","Brown","C0C0C0","Silver","FF99CC","Pink","FFCC99","Peach","FFFF99","Light yellow","CCFFCC","Pale green","CCFFFF","Pale cyan","99CCFF","Light sky blue","CC99FF","Plum","FFFFFF","White"],o=0;o',c=t.length-1,n=e.settings.textcolor_rows||5,a=e.settings.textcolor_cols||8,i=0;n>i;i++){for(l+="",F=0;a>F;F++)d=i*a+F,d>c?l+="":(r=t[d],l+='
    '+"
    "+"");l+=""}return l+=""}function r(o){var t,r=this.parent();(t=o.target.getAttribute("data-mce-color"))&&(r.hidePanel(),t="#"+t,r.color(t),e.execCommand(r.settings.selectcmd,!1,t))}function l(){var o=this;o._color&&e.execCommand(o.settings.selectcmd,!1,o._color)}e.addButton("forecolor",{type:"colorbutton",tooltip:"Text color",selectcmd:"ForeColor",panel:{html:t,onclick:r},onclick:l}),e.addButton("backcolor",{type:"colorbutton",tooltip:"Background color",selectcmd:"HiliteColor",panel:{html:t,onclick:r},onclick:l})}); -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/visualblocks/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("visualblocks",function(e,t){function n(){var t=this;t.active(r),e.on("VisualBlocks",function(){t.active(e.dom.hasClass(e.getBody(),"mce-visualblocks"))})}var i,a,r;window.NodeList&&(e.addCommand("mceVisualBlocks",function(){var n,o=e.dom;i||(i=o.uniqueId(),n=o.create("link",{id:i,rel:"stylesheet",href:t+"/css/visualblocks.css"}),e.getDoc().getElementsByTagName("head")[0].appendChild(n)),e.on("PreviewFormats AfterPreviewFormats",function(t){r&&o.toggleClass(e.getBody(),"mce-visualblocks","afterpreviewformats"==t.type)}),o.toggleClass(e.getBody(),"mce-visualblocks"),r=e.dom.hasClass(e.getBody(),"mce-visualblocks"),a&&a.active(o.hasClass(e.getBody(),"mce-visualblocks")),e.fire("VisualBlocks")}),e.addButton("visualblocks",{title:"Show blocks",cmd:"mceVisualBlocks",onPostRender:n}),e.addMenuItem("visualblocks",{text:"Show blocks",cmd:"mceVisualBlocks",onPostRender:n,selectable:!0,context:"view",prependToContext:!0}),e.on("init",function(){e.settings.visualblocks_default_state&&e.execCommand("mceVisualBlocks",!1,null,{skip_focus:!0})}),e.on("remove",function(){e.dom.removeClass(e.getBody(),"mce-visualblocks")}))}); -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/visualchars/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("visualchars",function(e){function t(t){var n,a,r,o,l,s,c=e.getBody(),d=e.selection;if(i=!i,e.fire("VisualChars",{state:i}),t&&(s=d.getBookmark()),i)for(a=[],tinymce.walk(c,function(e){3==e.nodeType&&e.nodeValue&&-1!=e.nodeValue.indexOf(" ")&&a.push(e)},"childNodes"),r=0;r$1'),l=e.dom.create("div",null,o);n=l.lastChild;)e.dom.insertAfter(n,a[r]);e.dom.remove(a[r])}else for(a=e.dom.select("span.mce-nbsp",c),r=a.length-1;r>=0;r--)e.dom.remove(a[r],1);d.moveToBookmark(s)}function n(){var t=this;e.on("VisualChars",function(e){t.active(e.state)})}var i;e.addCommand("mceVisualChars",t),e.addButton("visualchars",{title:"Show invisible characters",cmd:"mceVisualChars",onPostRender:n}),e.addMenuItem("visualchars",{text:"Show invisible characters",cmd:"mceVisualChars",onPostRender:n,selectable:!0,context:"view",prependToContext:!0}),e.on("beforegetcontent",function(e){i&&"raw"!=e.format&&!e.draft&&(i=!0,t(!1))})}); -------------------------------------------------------------------------------- /js/admin/tinymce/plugins/wordcount/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("wordcount",function(e){function t(){e.theme.panel.find("#wordcount").text(["Words: {0}",a.getCount()])}var n,o,a=this;n=e.getParam("wordcount_countregex",/[\w\u2019\x27\-\u0600-\u06FF]+/g),o=e.getParam("wordcount_cleanregex",/[0-9.(),;:!?%#$?\x27\x22_+=\\\/\-]*/g),e.on("init",function(){var n=e.theme.panel&&e.theme.panel.find("#statusbar")[0];n&&window.setTimeout(function(){n.insert({type:"label",name:"wordcount",text:["Words: {0}",a.getCount()],classes:"wordcount",disabled:e.settings.readonly},0),e.on("setcontent beforeaddundo",t),e.on("keyup",function(e){32==e.keyCode&&t()})},0)}),a.getCount=function(){var t=e.getContent({format:"raw"}),a=0;if(t){t=t.replace(/\.\.\./g," "),t=t.replace(/<.[^<>]*?>/g," ").replace(/ | /gi," "),t=t.replace(/(\w+)(&.+?;)+(\w+)/,"$1$3").replace(/&.+?;/g," "),t=t.replace(o,"");var r=t.match(n);r&&(a=r.length)}return a}}); -------------------------------------------------------------------------------- /js/admin/tinymce/skins/lightgray/content.inline.min.css: -------------------------------------------------------------------------------- 1 | .mce-object{border:1px dotted #3A3A3A;background:#d5d5d5 url(img/object.gif) no-repeat center}.mce-pagebreak{cursor:default;display:block;border:0;width:100%;height:5px;border:1px dashed #666;margin-top:15px}.mce-item-anchor{cursor:default;display:inline-block;-webkit-user-select:all;-webkit-user-modify:read-only;-moz-user-select:all;-moz-user-modify:read-only;user-select:all;user-modify:read-only;width:9px !important;height:9px !important;border:1px dotted #3A3A3A;background:#d5d5d5 url(img/anchor.gif) no-repeat center}.mce-nbsp{background:#AAA}hr{cursor:default}.mce-match-marker{background:#AAA;color:#fff}.mce-match-marker-selected{background:#3399ff;color:#fff}.mce-spellchecker-word{background:url(img/wline.gif) repeat-x bottom left;cursor:default}.mce-item-table,.mce-item-table td,.mce-item-table th,.mce-item-table caption{border:1px dashed #BBB}td.mce-item-selected,th.mce-item-selected{background-color:#3399ff !important}.mce-edit-focus{outline:1px dotted #333} -------------------------------------------------------------------------------- /js/admin/tinymce/skins/lightgray/content.min.css: -------------------------------------------------------------------------------- 1 | body{background-color:#FFFFFF;color:#000000;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11px;scrollbar-3dlight-color:#F0F0EE;scrollbar-arrow-color:#676662;scrollbar-base-color:#F0F0EE;scrollbar-darkshadow-color:#DDDDDD;scrollbar-face-color:#E0E0DD;scrollbar-highlight-color:#F0F0EE;scrollbar-shadow-color:#F0F0EE;scrollbar-track-color:#F5F5F5}td,th{font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11px}.mce-object{border:1px dotted #3A3A3A;background:#d5d5d5 url(img/object.gif) no-repeat center}.mce-pagebreak{cursor:default;display:block;border:0;width:100%;height:5px;border:1px dashed #666;margin-top:15px}.mce-item-anchor{cursor:default;display:inline-block;-webkit-user-select:all;-webkit-user-modify:read-only;-moz-user-select:all;-moz-user-modify:read-only;user-select:all;user-modify:read-only;width:9px !important;height:9px !important;border:1px dotted #3A3A3A;background:#d5d5d5 url(img/anchor.gif) no-repeat center}.mce-nbsp{background:#AAA}hr{cursor:default}.mce-match-marker{background:#AAA;color:#fff}.mce-match-marker-selected{background:#3399ff;color:#fff}.mce-spellchecker-word{background:url(img/wline.gif) repeat-x bottom left;cursor:default}.mce-item-table,.mce-item-table td,.mce-item-table th,.mce-item-table caption{border:1px dashed #BBB}td.mce-item-selected,th.mce-item-selected{background-color:#3399ff !important}.mce-edit-focus{outline:1px dotted #333} -------------------------------------------------------------------------------- /js/admin/tinymce/skins/lightgray/fonts/readme.md: -------------------------------------------------------------------------------- 1 | Icons are generated and provided by the http://icomoon.io service. 2 | -------------------------------------------------------------------------------- /js/admin/tinymce/skins/lightgray/fonts/tinymce-small.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/js/admin/tinymce/skins/lightgray/fonts/tinymce-small.eot -------------------------------------------------------------------------------- /js/admin/tinymce/skins/lightgray/fonts/tinymce-small.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/js/admin/tinymce/skins/lightgray/fonts/tinymce-small.ttf -------------------------------------------------------------------------------- /js/admin/tinymce/skins/lightgray/fonts/tinymce-small.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/js/admin/tinymce/skins/lightgray/fonts/tinymce-small.woff -------------------------------------------------------------------------------- /js/admin/tinymce/skins/lightgray/fonts/tinymce.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/js/admin/tinymce/skins/lightgray/fonts/tinymce.eot -------------------------------------------------------------------------------- /js/admin/tinymce/skins/lightgray/fonts/tinymce.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/js/admin/tinymce/skins/lightgray/fonts/tinymce.ttf -------------------------------------------------------------------------------- /js/admin/tinymce/skins/lightgray/fonts/tinymce.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/js/admin/tinymce/skins/lightgray/fonts/tinymce.woff -------------------------------------------------------------------------------- /js/admin/tinymce/skins/lightgray/img/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/js/admin/tinymce/skins/lightgray/img/anchor.gif -------------------------------------------------------------------------------- /js/admin/tinymce/skins/lightgray/img/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/js/admin/tinymce/skins/lightgray/img/loader.gif -------------------------------------------------------------------------------- /js/admin/tinymce/skins/lightgray/img/object.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/js/admin/tinymce/skins/lightgray/img/object.gif -------------------------------------------------------------------------------- /js/admin/tinymce/skins/lightgray/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/js/admin/tinymce/skins/lightgray/img/trans.gif -------------------------------------------------------------------------------- /js/admin/tinymce/skins/lightgray/img/wline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/js/admin/tinymce/skins/lightgray/img/wline.gif -------------------------------------------------------------------------------- /js/admin/tinymce/tinymce-global.js: -------------------------------------------------------------------------------- 1 | tinymce.init({ 2 | mode: "textareas", 3 | 4 | editor_deselector: "mceNoEditor", 5 | 6 | // =========================================== 7 | // INCLUDE THE PLUGIN 8 | // =========================================== 9 | 10 | plugins: [ 11 | "advlist autolink lists link image charmap print preview anchor", 12 | "searchreplace visualblocks code fullscreen", 13 | "insertdatetime media table contextmenu paste jbimages" 14 | ], 15 | 16 | // =========================================== 17 | // PUT PLUGIN'S BUTTON on the toolbar 18 | // =========================================== 19 | 20 | toolbar: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image jbimages", 21 | 22 | // =========================================== 23 | // SET RELATIVE_URLS to FALSE (This is required for images to display properly) 24 | // =========================================== 25 | 26 | relative_urls: false 27 | 28 | }); -------------------------------------------------------------------------------- /js/global/jqueryui/jquiery-ui-all.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | 3 | $( "#accordion" ).accordion(); 4 | 5 | 6 | 7 | var availableTags = [ 8 | "ActionScript", 9 | "AppleScript", 10 | "Asp", 11 | "BASIC", 12 | "C", 13 | "C++", 14 | "Clojure", 15 | "COBOL", 16 | "ColdFusion", 17 | "Erlang", 18 | "Fortran", 19 | "Groovy", 20 | "Haskell", 21 | "Java", 22 | "JavaScript", 23 | "Lisp", 24 | "Perl", 25 | "PHP", 26 | "Python", 27 | "Ruby", 28 | "Scala", 29 | "Scheme" 30 | ]; 31 | $( "#autocomplete" ).autocomplete({ 32 | source: availableTags 33 | }); 34 | 35 | 36 | 37 | $( "#button" ).button(); 38 | $( "#radioset" ).buttonset(); 39 | 40 | 41 | 42 | $( "#tabs" ).tabs(); 43 | 44 | 45 | 46 | $( "#dialog" ).dialog({ 47 | autoOpen: false, 48 | width: 400, 49 | buttons: [ 50 | { 51 | text: "Ok", 52 | click: function() { 53 | $( this ).dialog( "close" ); 54 | } 55 | }, 56 | { 57 | text: "Cancel", 58 | click: function() { 59 | $( this ).dialog( "close" ); 60 | } 61 | } 62 | ] 63 | }); 64 | 65 | // Link to open the dialog 66 | $( "#dialog-link" ).click(function( event ) { 67 | $( "#dialog" ).dialog( "open" ); 68 | event.preventDefault(); 69 | }); 70 | 71 | 72 | 73 | $( "#datepicker" ).datepicker({ 74 | inline: true 75 | }); 76 | 77 | 78 | 79 | $( "#slider" ).slider({ 80 | range: true, 81 | values: [ 17, 67 ] 82 | }); 83 | 84 | 85 | 86 | $( "#progressbar" ).progressbar({ 87 | value: 20 88 | }); 89 | 90 | 91 | // Hover states on the static widgets 92 | $( "#dialog-link, #icons li" ).hover( 93 | function() { 94 | $( this ).addClass( "ui-state-hover" ); 95 | }, 96 | function() { 97 | $( this ).removeClass( "ui-state-hover" ); 98 | } 99 | ); 100 | }); -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /system/core/Controller.php: -------------------------------------------------------------------------------- 1 | $class) 45 | { 46 | $this->$var =& load_class($class); 47 | } 48 | 49 | $this->load =& load_class('Loader', 'core'); 50 | 51 | $this->load->initialize(); 52 | 53 | log_message('debug', "Controller Class Initialized"); 54 | } 55 | 56 | public static function &get_instance() 57 | { 58 | return self::$instance; 59 | } 60 | } 61 | // END Controller class 62 | 63 | /* End of file Controller.php */ 64 | /* Location: ./system/core/Controller.php */ -------------------------------------------------------------------------------- /system/core/Model.php: -------------------------------------------------------------------------------- 1 | $key; 52 | } 53 | } 54 | // END Model Class 55 | 56 | /* End of file Model.php */ 57 | /* Location: ./system/core/Model.php */ -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

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

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/email_helper.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/helpers/language_helper.php: -------------------------------------------------------------------------------- 1 | lang->line($line); 46 | 47 | if ($id != '') 48 | { 49 | $line = '"; 50 | } 51 | 52 | return $line; 53 | } 54 | } 55 | 56 | // ------------------------------------------------------------------------ 57 | /* End of file language_helper.php */ 58 | /* Location: ./system/helpers/language_helper.php */ -------------------------------------------------------------------------------- /system/helpers/path_helper.php: -------------------------------------------------------------------------------- 1 | ","\"", "'", "-"), 53 | array("&", "<", ">", """, "'", "-"), 54 | $str); 55 | 56 | // Decode the temp markers back to entities 57 | $str = preg_replace("/$temp(\d+);/","&#\\1;",$str); 58 | 59 | if ($protect_all === TRUE) 60 | { 61 | $str = preg_replace("/$temp(\w+);/","&\\1;", $str); 62 | } 63 | 64 | return $str; 65 | } 66 | } 67 | 68 | // ------------------------------------------------------------------------ 69 | 70 | /* End of file xml_helper.php */ 71 | /* Location: ./system/helpers/xml_helper.php */ -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/language/english/calendar_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/language/english/migration_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

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

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /user_guide/images/appflowchart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/user_guide/images/appflowchart.gif -------------------------------------------------------------------------------- /user_guide/images/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/user_guide/images/arrow.gif -------------------------------------------------------------------------------- /user_guide/images/ci_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/user_guide/images/ci_logo.jpg -------------------------------------------------------------------------------- /user_guide/images/ci_logo_flame.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/user_guide/images/ci_logo_flame.jpg -------------------------------------------------------------------------------- /user_guide/images/ci_quick_ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/user_guide/images/ci_quick_ref.png -------------------------------------------------------------------------------- /user_guide/images/codeigniter_1.7.1_helper_reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/user_guide/images/codeigniter_1.7.1_helper_reference.pdf -------------------------------------------------------------------------------- /user_guide/images/codeigniter_1.7.1_helper_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/user_guide/images/codeigniter_1.7.1_helper_reference.png -------------------------------------------------------------------------------- /user_guide/images/codeigniter_1.7.1_library_reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/user_guide/images/codeigniter_1.7.1_library_reference.pdf -------------------------------------------------------------------------------- /user_guide/images/codeigniter_1.7.1_library_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/user_guide/images/codeigniter_1.7.1_library_reference.png -------------------------------------------------------------------------------- /user_guide/images/file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/user_guide/images/file.gif -------------------------------------------------------------------------------- /user_guide/images/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/user_guide/images/folder.gif -------------------------------------------------------------------------------- /user_guide/images/nav_bg_darker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/user_guide/images/nav_bg_darker.jpg -------------------------------------------------------------------------------- /user_guide/images/nav_separator_darker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/user_guide/images/nav_separator_darker.jpg -------------------------------------------------------------------------------- /user_guide/images/nav_toggle_darker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/user_guide/images/nav_toggle_darker.jpg -------------------------------------------------------------------------------- /user_guide/images/reactor-bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/user_guide/images/reactor-bullet.png -------------------------------------------------------------------------------- /user_guide/images/smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/user_guide/images/smile.gif -------------------------------------------------------------------------------- /user_guide/images/transparent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwhitcher/Codeigniter-Blog-Project/19e4df7822b36777fc697c2b3d2faf76eabec62a/user_guide/images/transparent.gif -------------------------------------------------------------------------------- /user_guide/nav/hacks.txt: -------------------------------------------------------------------------------- 1 | I did the following hack in moo.fx.js: 2 | 3 | At line 79 in the toggle: function() function, I added: 4 | 5 | document.getElementById('nav').style.display = 'block'; 6 | 7 | -- Rick Ellis 8 | 9 | 10 | Also removed fx.Opacity and fx.Height from moo.fx.js -- Pascal -------------------------------------------------------------------------------- /user_guide/nav/user_guide_menu.js: -------------------------------------------------------------------------------- 1 | window.onload = function() { 2 | myHeight = new fx.Height('nav', {duration: 400}); 3 | myHeight.hide(); 4 | } --------------------------------------------------------------------------------