gitextract_7w7k1dco/ ├── .gitignore ├── COPYRIGHT.txt ├── LICENSE.txt ├── README.md ├── admin/ │ ├── ajax/ │ │ ├── categories.php │ │ ├── comments.php │ │ ├── mobile.php │ │ ├── pages.php │ │ ├── posts.php │ │ ├── posts_get_video_info.php │ │ ├── security.bit │ │ ├── settings.php │ │ └── uploader.php │ ├── boot/ │ │ ├── admin.bit │ │ ├── ajax.bit │ │ ├── blog.bit │ │ ├── feed.bit │ │ ├── rules/ │ │ │ ├── 1-fs_php.bit │ │ │ ├── 10-pager.bit │ │ │ ├── 10-seo.bit │ │ │ ├── 10-session.bit │ │ │ ├── 11-admin.bit │ │ │ ├── 11-security.bit │ │ │ ├── 2-objects.bit │ │ │ ├── 3-variables.bit │ │ │ ├── 4-blacklist.bit │ │ │ ├── 4-remove_magic.bit │ │ │ ├── 5-regional.bit │ │ │ ├── 5-url.bit │ │ │ ├── 8-posts_pages.bit │ │ │ ├── 8-posts_pages_feed.bit │ │ │ ├── 8-posts_pages_sitemap.bit │ │ │ ├── 98-blog.bit │ │ │ ├── 98-comments.bit │ │ │ ├── 98-constants.bit │ │ │ ├── 98-plugins.bit │ │ │ └── 99-misc.bit │ │ └── sitemap.bit │ ├── controllers/ │ │ ├── categories/ │ │ │ ├── edit.bit │ │ │ └── list.bit │ │ ├── comments/ │ │ │ ├── list.bit │ │ │ └── settings.bit │ │ ├── dashboard/ │ │ │ └── view.bit │ │ ├── page/ │ │ │ ├── edit.bit │ │ │ ├── list.bit │ │ │ └── new.bit │ │ ├── plugins/ │ │ │ ├── config.bit │ │ │ ├── install.bit │ │ │ ├── list.bit │ │ │ └── uninstall.bit │ │ ├── post/ │ │ │ ├── edit.bit │ │ │ ├── list.bit │ │ │ └── new.bit │ │ ├── settings/ │ │ │ ├── advanced.bit │ │ │ ├── general.bit │ │ │ ├── image.bit │ │ │ ├── notifications.bit │ │ │ ├── regional.bit │ │ │ ├── seo.bit │ │ │ ├── themes.bit │ │ │ └── username.bit │ │ └── user/ │ │ ├── forgot.bit │ │ ├── login.bit │ │ ├── logout.bit │ │ └── send_forgot.bit │ ├── js/ │ │ ├── ajax_form.bit │ │ ├── functions.js │ │ ├── jquery/ │ │ │ └── jquery.js │ │ ├── reveal/ │ │ │ └── jquery.reveal.js │ │ ├── system.php │ │ └── tinymce/ │ │ ├── langs/ │ │ │ ├── de_DE.js │ │ │ ├── es_ES.js │ │ │ ├── fr_FR.js │ │ │ ├── it_IT.js │ │ │ ├── nl_NL.js │ │ │ ├── pl_PL.js │ │ │ ├── pt_PT.js │ │ │ ├── ru_RU.js │ │ │ ├── vi_VI.js │ │ │ ├── zh_CN.js │ │ │ └── zh_TW.js │ │ ├── plugins/ │ │ │ ├── media/ │ │ │ │ └── moxieplayer.swf │ │ │ └── visualblocks/ │ │ │ └── css/ │ │ │ └── visualblocks.css │ │ └── skins/ │ │ └── lightgray/ │ │ └── fonts/ │ │ └── readme.md │ ├── kernel/ │ │ ├── api/ │ │ │ ├── comment.class.php │ │ │ └── login.class.php │ │ ├── db/ │ │ │ ├── db_categories.class.php │ │ │ ├── db_comments.class.php │ │ │ ├── db_notifications.class.php │ │ │ ├── db_pages.class.php │ │ │ ├── db_posts.class.php │ │ │ ├── db_settings.class.php │ │ │ ├── db_tags.class.php │ │ │ ├── db_users.class.php │ │ │ └── nbxml.class.php │ │ ├── defensio/ │ │ │ ├── Defensio.php │ │ │ └── lib/ │ │ │ ├── DefensioRestClient.php │ │ │ └── exceptions.php │ │ ├── helpers/ │ │ │ ├── blog.class.php │ │ │ ├── category.class.php │ │ │ ├── cookie.class.php │ │ │ ├── crypt.class.php │ │ │ ├── date.class.php │ │ │ ├── email.class.php │ │ │ ├── filesystem.class.php │ │ │ ├── html.class.php │ │ │ ├── image.class.php │ │ │ ├── language.class.php │ │ │ ├── net.class.php │ │ │ ├── number.class.php │ │ │ ├── page.class.php │ │ │ ├── pager.class.php │ │ │ ├── plugin.class.php │ │ │ ├── post.class.php │ │ │ ├── redirect.class.php │ │ │ ├── resize.class.php │ │ │ ├── session.class.php │ │ │ ├── social.class.php │ │ │ ├── text.class.php │ │ │ ├── url.class.php │ │ │ ├── validation.class.php │ │ │ └── video.class.php │ │ └── plugin.class.php │ ├── templates/ │ │ ├── easy4/ │ │ │ ├── css/ │ │ │ │ ├── icons/ │ │ │ │ │ ├── Read Me.txt │ │ │ │ │ ├── index.html │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── lte-ie7.js │ │ │ │ │ └── style.css │ │ │ │ ├── main.css │ │ │ │ ├── nb_code.css │ │ │ │ ├── nb_media.css │ │ │ │ ├── normalize.css │ │ │ │ └── tinymce.css │ │ │ ├── includes/ │ │ │ │ ├── sidebar.bit │ │ │ │ └── toolbar.bit │ │ │ └── index.bit │ │ └── login/ │ │ ├── css/ │ │ │ └── main.css │ │ └── index.bit │ └── views/ │ ├── categories/ │ │ ├── edit.bit │ │ └── list.bit │ ├── comments/ │ │ ├── list.bit │ │ └── settings.bit │ ├── dashboard/ │ │ ├── drafts.bit │ │ ├── last_comments.bit │ │ ├── notifications.bit │ │ ├── quick_start.bit │ │ └── view.bit │ ├── page/ │ │ ├── includes/ │ │ │ ├── buttons.bit │ │ │ ├── content.bit │ │ │ ├── description.bit │ │ │ ├── keywords.bit │ │ │ ├── nb_code.bit │ │ │ ├── nb_media.bit │ │ │ ├── position.bit │ │ │ ├── slug.bit │ │ │ └── title.bit │ │ ├── list.bit │ │ └── new.bit │ ├── plugins/ │ │ ├── config.bit │ │ └── list.bit │ ├── post/ │ │ ├── edit.bit │ │ ├── includes/ │ │ │ ├── allow_comments.bit │ │ │ ├── buttons.bit │ │ │ ├── categories.bit │ │ │ ├── content.bit │ │ │ ├── description.bit │ │ │ ├── nb_code.bit │ │ │ ├── nb_media.bit │ │ │ ├── publish_date.bit │ │ │ ├── quote.bit │ │ │ ├── slug.bit │ │ │ ├── tags.bit │ │ │ └── title.bit │ │ ├── list.bit │ │ ├── new_quote.bit │ │ ├── new_simple.bit │ │ └── new_video.bit │ ├── settings/ │ │ ├── general.bit │ │ ├── image.bit │ │ ├── notifications.bit │ │ ├── regional.bit │ │ ├── seo.bit │ │ ├── themes.bit │ │ └── username.bit │ └── user/ │ ├── forgot.bit │ ├── login.bit │ └── send_forgot.bit ├── admin.php ├── bludit.php ├── feed.php ├── index.php ├── install.php ├── languages/ │ ├── ca_ES.bit │ ├── cs_CZ.bit │ ├── da_DK.bit │ ├── de_DE.bit │ ├── en_US.bit │ ├── es_ES.bit │ ├── fa_IR.bit │ ├── fr_FR.bit │ ├── it_IT.bit │ ├── ja_JP.bit │ ├── nl_NL.bit │ ├── pl_PL.bit │ ├── pt_BR.bit │ ├── pt_PT.bit │ ├── ru_RU.bit │ ├── sk_SVK.bit │ ├── sv_SE.bit │ ├── tr_TR.bit │ ├── vi_VI.bit │ ├── zh_CN.bit │ └── zh_TW.bit ├── plugins/ │ ├── about/ │ │ ├── languages/ │ │ │ ├── da_DK.bit │ │ │ ├── en_US.bit │ │ │ ├── es_ES.bit │ │ │ ├── fr_FR.bit │ │ │ └── ru_RU.bit │ │ └── plugin.bit │ ├── analytics/ │ │ ├── languages/ │ │ │ ├── da_DK.bit │ │ │ ├── en_US.bit │ │ │ ├── es_ES.bit │ │ │ ├── fr_FR.bit │ │ │ └── ru_RU.bit │ │ └── plugin.bit │ ├── categories/ │ │ ├── languages/ │ │ │ ├── da_DK.bit │ │ │ ├── en_US.bit │ │ │ ├── es_ES.bit │ │ │ ├── fr_FR.bit │ │ │ └── ru_RU.bit │ │ └── plugin.bit │ ├── hello/ │ │ ├── languages/ │ │ │ ├── da_DK.bit │ │ │ ├── en_US.bit │ │ │ ├── fr_FR.bit │ │ │ └── ru_RU.bit │ │ └── plugin.bit │ ├── html_code/ │ │ ├── languages/ │ │ │ ├── da_DK.bit │ │ │ ├── en_US.bit │ │ │ ├── es_ES.bit │ │ │ ├── fr_FR.bit │ │ │ └── ru_RU.bit │ │ └── plugin.bit │ ├── latest_posts/ │ │ ├── languages/ │ │ │ ├── da_DK.bit │ │ │ ├── en_US.bit │ │ │ ├── es_ES.bit │ │ │ ├── fr_FR.bit │ │ │ └── ru_RU.bit │ │ └── plugin.bit │ ├── maintenance_mode/ │ │ ├── languages/ │ │ │ ├── da_DK.bit │ │ │ ├── en_US.bit │ │ │ ├── es_ES.bit │ │ │ ├── fr_FR.bit │ │ │ └── ru_RU.bit │ │ └── plugin.bit │ ├── mathjax/ │ │ ├── languages/ │ │ │ ├── en_US.bit │ │ │ └── es_ES.bit │ │ └── plugin.bit │ ├── my_image/ │ │ ├── languages/ │ │ │ ├── da_DK.bit │ │ │ ├── en_US.bit │ │ │ ├── es_ES.bit │ │ │ ├── fr_FR.bit │ │ │ └── ru_RU.bit │ │ └── plugin.bit │ ├── open_graph/ │ │ ├── languages/ │ │ │ ├── da_DK.bit │ │ │ ├── en_US.bit │ │ │ ├── es_ES.bit │ │ │ ├── fr_FR.bit │ │ │ └── ru_RU.bit │ │ └── plugin.bit │ ├── pages/ │ │ ├── languages/ │ │ │ ├── da_DK.bit │ │ │ ├── en_US.bit │ │ │ ├── es_ES.bit │ │ │ ├── fr_FR.bit │ │ │ └── ru_RU.bit │ │ └── plugin.bit │ ├── quick_links/ │ │ ├── languages/ │ │ │ ├── da_DK.bit │ │ │ ├── en_US.bit │ │ │ ├── es_ES.bit │ │ │ ├── fr_FR.bit │ │ │ └── ru_RU.bit │ │ └── plugin.bit │ ├── slogan/ │ │ ├── languages/ │ │ │ ├── da_DK.bit │ │ │ ├── en_US.bit │ │ │ ├── es_ES.bit │ │ │ ├── fr_FR_bit │ │ │ └── ru_RU.bit │ │ └── plugin.bit │ ├── sponsors/ │ │ ├── languages/ │ │ │ ├── da_DK.bit │ │ │ ├── en_US.bit │ │ │ ├── es_ES.bit │ │ │ ├── fr_FR.bit │ │ │ └── ru_RU.bit │ │ └── plugin.bit │ ├── tag_cloud/ │ │ ├── languages/ │ │ │ ├── da_DK.bit │ │ │ ├── en_US.bit │ │ │ ├── es_ES.bit │ │ │ ├── fr_FR.bit │ │ │ └── ru_RU.bit │ │ └── plugin.bit │ └── twitter_cards/ │ ├── languages/ │ │ ├── da_DK.bit │ │ ├── en_US.bit │ │ ├── es_ES.bit │ │ ├── fr_FR.bit │ │ └── ru_RU.bit │ └── plugin.bit ├── sitemap.php ├── themes/ │ ├── clean3/ │ │ ├── config.bit │ │ ├── css/ │ │ │ ├── main.css │ │ │ ├── normalize.css │ │ │ ├── page.css │ │ │ ├── plugins.css │ │ │ ├── post.css │ │ │ └── rainbow.css │ │ ├── templates/ │ │ │ └── default.bit │ │ └── views/ │ │ ├── blog/ │ │ │ ├── disqus_comments.bit │ │ │ ├── facebook_comments.bit │ │ │ ├── pager.bit │ │ │ ├── post.bit │ │ │ └── view.bit │ │ ├── error/ │ │ │ └── 404.bit │ │ ├── page/ │ │ │ └── view.bit │ │ └── post/ │ │ ├── disqus_comments.bit │ │ ├── facebook_comments.bit │ │ ├── nibbleblog_comments.bit │ │ ├── post.bit │ │ └── view.bit │ ├── echo/ │ │ ├── config.bit │ │ ├── css/ │ │ │ └── style.css │ │ ├── js/ │ │ │ └── script.js │ │ ├── templates/ │ │ │ └── default.bit │ │ └── views/ │ │ ├── blog/ │ │ │ ├── includes/ │ │ │ │ ├── pager.bit │ │ │ │ ├── post_body.bit │ │ │ │ ├── post_foot.bit │ │ │ │ └── post_head.bit │ │ │ └── view.bit │ │ ├── error/ │ │ │ └── 404.bit │ │ ├── page/ │ │ │ └── view.bit │ │ └── post/ │ │ ├── includes/ │ │ │ ├── comments_disqus.bit │ │ │ ├── comments_facebook.bit │ │ │ ├── comments_nibbleblog.bit │ │ │ ├── post_body.bit │ │ │ ├── post_foot.bit │ │ │ └── post_head.bit │ │ └── view.bit │ ├── google_simple/ │ │ ├── config.bit │ │ ├── css/ │ │ │ ├── main.css │ │ │ ├── normalize.css │ │ │ ├── page.css │ │ │ ├── plugins.css │ │ │ ├── post.css │ │ │ └── rainbow.css │ │ ├── templates/ │ │ │ └── default.bit │ │ └── views/ │ │ ├── blog/ │ │ │ ├── includes/ │ │ │ │ ├── disqus_comments.bit │ │ │ │ ├── facebook_comments.bit │ │ │ │ ├── pager.bit │ │ │ │ └── post.bit │ │ │ └── view.bit │ │ ├── error/ │ │ │ └── 404.bit │ │ ├── page/ │ │ │ └── view.bit │ │ └── post/ │ │ ├── includes/ │ │ │ ├── disqus_comments.bit │ │ │ ├── facebook_comments.bit │ │ │ ├── nibbleblog_comments.bit │ │ │ └── post.bit │ │ └── view.bit │ ├── medium/ │ │ ├── config.bit │ │ ├── controllers/ │ │ │ └── post/ │ │ │ └── view.bit │ │ ├── css/ │ │ │ ├── main.css │ │ │ ├── normalize.css │ │ │ ├── page.css │ │ │ ├── plugins.css │ │ │ ├── post.css │ │ │ └── rainbow.css │ │ ├── init.bit │ │ ├── templates/ │ │ │ └── default.bit │ │ └── views/ │ │ ├── blog/ │ │ │ └── view.bit │ │ ├── error/ │ │ │ └── 404.bit │ │ ├── page/ │ │ │ └── view.bit │ │ └── post/ │ │ └── view.bit │ ├── mydocs/ │ │ ├── config.bit │ │ ├── css/ │ │ │ ├── main.css │ │ │ ├── normalize.css │ │ │ ├── page.css │ │ │ ├── plugins.css │ │ │ ├── post.css │ │ │ └── rainbow.css │ │ ├── templates/ │ │ │ └── default.bit │ │ └── views/ │ │ ├── blog/ │ │ │ ├── disqus_comments.bit │ │ │ ├── facebook_comments.bit │ │ │ ├── pager.bit │ │ │ ├── post.bit │ │ │ └── view.bit │ │ ├── error/ │ │ │ └── 404.bit │ │ ├── page/ │ │ │ └── view.bit │ │ └── post/ │ │ ├── disqus_comments.bit │ │ ├── facebook_comments.bit │ │ ├── nibbleblog_comments.bit │ │ ├── post.bit │ │ └── view.bit │ ├── note-2/ │ │ ├── config.bit │ │ ├── css/ │ │ │ └── styles.css │ │ ├── js/ │ │ │ └── scripts.js │ │ ├── templates/ │ │ │ └── default.bit │ │ └── views/ │ │ ├── blog/ │ │ │ └── view.bit │ │ ├── error/ │ │ │ └── 404.bit │ │ ├── page/ │ │ │ └── view.bit │ │ └── post/ │ │ ├── disqus_comments.bit │ │ └── view.bit │ ├── orange2/ │ │ ├── config.bit │ │ ├── css/ │ │ │ ├── main.css │ │ │ ├── normalize.css │ │ │ ├── page.css │ │ │ ├── plugins.css │ │ │ ├── post.css │ │ │ └── rainbow.css │ │ ├── templates/ │ │ │ └── default.bit │ │ └── views/ │ │ ├── blog/ │ │ │ ├── disqus_comments.bit │ │ │ ├── facebook_comments.bit │ │ │ ├── pager.bit │ │ │ ├── post.bit │ │ │ └── view.bit │ │ ├── error/ │ │ │ └── 404.bit │ │ ├── page/ │ │ │ └── view.bit │ │ └── post/ │ │ ├── disqus_comments.bit │ │ ├── facebook_comments.bit │ │ ├── nibbleblog_comments.bit │ │ ├── post.bit │ │ └── view.bit │ ├── panadero/ │ │ ├── config.bit │ │ ├── css/ │ │ │ ├── main.css │ │ │ └── normalize.css │ │ ├── templates/ │ │ │ └── default.bit │ │ └── views/ │ │ ├── blog/ │ │ │ ├── includes/ │ │ │ │ ├── pager.bit │ │ │ │ └── post_view.bit │ │ │ └── view.bit │ │ ├── error/ │ │ │ └── 404.bit │ │ ├── page/ │ │ │ └── view.bit │ │ └── post/ │ │ ├── includes/ │ │ │ ├── comment_form.bit │ │ │ ├── comment_list.bit │ │ │ └── post_view.bit │ │ └── view.bit │ ├── pure_html/ │ │ ├── config.bit │ │ ├── templates/ │ │ │ └── default.bit │ │ └── views/ │ │ ├── blog/ │ │ │ └── view.bit │ │ ├── error/ │ │ │ └── 404.bit │ │ ├── page/ │ │ │ └── view.bit │ │ └── post/ │ │ └── view.bit │ ├── simpler/ │ │ ├── config.bit │ │ ├── css/ │ │ │ ├── main.css │ │ │ ├── normalize.css │ │ │ ├── page.css │ │ │ ├── plugins.css │ │ │ ├── post.css │ │ │ └── rainbow.css │ │ ├── templates/ │ │ │ └── default.bit │ │ └── views/ │ │ ├── blog/ │ │ │ ├── disqus_comments.bit │ │ │ ├── facebook_comments.bit │ │ │ ├── pager.bit │ │ │ ├── post.bit │ │ │ └── view.bit │ │ ├── error/ │ │ │ └── 404.bit │ │ ├── page/ │ │ │ └── view.bit │ │ └── post/ │ │ ├── disqus_comments.bit │ │ ├── facebook_comments.bit │ │ ├── nibbleblog_comments.bit │ │ ├── post.bit │ │ └── view.bit │ └── techie/ │ ├── config.bit │ ├── css/ │ │ ├── main.css │ │ ├── normalize.css │ │ ├── page.css │ │ ├── plugins.css │ │ ├── post.css │ │ └── rainbow_github.css │ ├── js/ │ │ ├── browser-update.js │ │ ├── sidebar.js │ │ ├── taglist.js │ │ └── youtube_embed.js │ ├── templates/ │ │ └── default.bit │ └── views/ │ ├── blog/ │ │ ├── disqus_comments.bit │ │ ├── facebook_comments.bit │ │ ├── pager.bit │ │ ├── post.bit │ │ ├── social.bit │ │ ├── taglist.bit │ │ └── view.bit │ ├── error/ │ │ └── 404.bit │ ├── page/ │ │ ├── social.bit │ │ └── view.bit │ └── post/ │ ├── disqus_comments.bit │ ├── facebook_comments.bit │ ├── nibbleblog_comments.bit │ ├── post.bit │ ├── social.bit │ └── view.bit └── update.php