├── .gitignore
├── LICENSE.md
├── Makefile
├── README.md
├── demo.sh
├── docker-unikernel
├── macvtap.patch
├── mysql
├── Dockerfile
├── Makefile
├── fs
│ ├── .keepme
│ └── etc
│ │ ├── group
│ │ ├── master.passwd
│ │ ├── nsswitch.conf
│ │ ├── protocols
│ │ ├── pwd.db
│ │ ├── resolv.conf
│ │ ├── services
│ │ └── spwd.db
├── rumprun-makefs.sh
└── run.sh
├── nginx-fastcgi
├── Dockerfile
├── Makefile
├── fs
│ ├── data
│ │ ├── conf
│ │ │ ├── fastcgi.conf
│ │ │ ├── fastcgi_params
│ │ │ ├── mime.types
│ │ │ ├── nginx.conf
│ │ │ ├── scgi_params
│ │ │ └── uwsgi_params
│ │ └── www
│ │ │ ├── index.php
│ │ │ ├── logo150.png
│ │ │ ├── phpinfo.php
│ │ │ └── small_h.png
│ └── etc
│ │ ├── group
│ │ ├── master.passwd
│ │ ├── nsswitch.conf
│ │ ├── protocols
│ │ ├── pwd.db
│ │ ├── resolv.conf
│ │ ├── services
│ │ └── spwd.db
└── run.sh
├── nginx-nibbleblog
├── Dockerfile
├── Makefile
├── fs
│ ├── data
│ │ ├── conf
│ │ │ ├── fastcgi.conf
│ │ │ ├── fastcgi_params
│ │ │ ├── mime.types
│ │ │ ├── nginx.conf
│ │ │ ├── scgi_params
│ │ │ └── uwsgi_params
│ │ └── www
│ │ │ ├── COPYRIGHT.txt
│ │ │ ├── LICENSE.txt
│ │ │ ├── admin.php
│ │ │ ├── admin
│ │ │ ├── .DS_Store
│ │ │ ├── ajax
│ │ │ │ ├── .DS_Store
│ │ │ │ ├── categories.php
│ │ │ │ ├── comments.php
│ │ │ │ ├── mobile.php
│ │ │ │ ├── pages.php
│ │ │ │ ├── posts.php
│ │ │ │ ├── posts_get_video_info.php
│ │ │ │ ├── security.bit
│ │ │ │ ├── settings.php
│ │ │ │ └── uploader.php
│ │ │ ├── boot
│ │ │ │ ├── .DS_Store
│ │ │ │ ├── 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
│ │ │ │ ├── .DS_Store
│ │ │ │ ├── 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
│ │ │ │ │ ├── jquery.tinymce.min.js
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── 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.min.js
│ │ │ ├── kernel
│ │ │ │ ├── .DS_Store
│ │ │ │ ├── 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
│ │ │ │ ├── .DS_Store
│ │ │ │ ├── easy4
│ │ │ │ │ ├── .DS_Store
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── icons
│ │ │ │ │ │ │ ├── Read_Me.txt
│ │ │ │ │ │ │ ├── fonts
│ │ │ │ │ │ │ │ ├── icomoon.dev.svg
│ │ │ │ │ │ │ │ ├── icomoon.eot
│ │ │ │ │ │ │ │ ├── icomoon.svg
│ │ │ │ │ │ │ │ ├── icomoon.ttf
│ │ │ │ │ │ │ │ └── icomoon.woff
│ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ ├── license.txt
│ │ │ │ │ │ │ ├── lte-ie7.js
│ │ │ │ │ │ │ └── style.css
│ │ │ │ │ │ ├── img
│ │ │ │ │ │ │ ├── console.png
│ │ │ │ │ │ │ ├── favicon.ico
│ │ │ │ │ │ │ ├── grey.png
│ │ │ │ │ │ │ ├── installer_bg.png
│ │ │ │ │ │ │ ├── mrnibbler.png
│ │ │ │ │ │ │ └── mrnibbler128.png
│ │ │ │ │ │ ├── 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
│ │ │ │ ├── .DS_Store
│ │ │ │ ├── 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
│ │ │ │ ├── .DS_Store
│ │ │ │ ├── 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
│ │ │ ├── content
│ │ │ └── .DS_Store
│ │ │ ├── feed.php
│ │ │ ├── index.php
│ │ │ ├── install.php
│ │ │ ├── languages
│ │ │ ├── ca_ES.bit
│ │ │ ├── da_DK.bit
│ │ │ ├── de_DE.bit
│ │ │ ├── en_US.bit
│ │ │ ├── es_ES.bit
│ │ │ ├── fa_IR
│ │ │ ├── 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
│ │ │ ├── vi_VI.bit
│ │ │ ├── zh_CN.bit
│ │ │ └── zh_TW.bit
│ │ │ ├── plugins
│ │ │ ├── .DS_Store
│ │ │ ├── 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
│ │ │ ├── .DS_Store
│ │ │ ├── echo
│ │ │ │ ├── .DS_Store
│ │ │ │ ├── config.bit
│ │ │ │ ├── css
│ │ │ │ │ ├── img
│ │ │ │ │ │ ├── button.png
│ │ │ │ │ │ ├── favicon.ico
│ │ │ │ │ │ └── logo.png
│ │ │ │ │ └── style.css
│ │ │ │ ├── js
│ │ │ │ │ └── script.js
│ │ │ │ ├── screenshot.jpg
│ │ │ │ ├── templates
│ │ │ │ │ └── default.bit
│ │ │ │ └── views
│ │ │ │ │ ├── .DS_Store
│ │ │ │ │ ├── blog
│ │ │ │ │ ├── .DS_Store
│ │ │ │ │ ├── includes
│ │ │ │ │ │ ├── pager.bit
│ │ │ │ │ │ ├── post_body.bit
│ │ │ │ │ │ ├── post_foot.bit
│ │ │ │ │ │ └── post_head.bit
│ │ │ │ │ └── view.bit
│ │ │ │ │ ├── error
│ │ │ │ │ └── 404.bit
│ │ │ │ │ ├── page
│ │ │ │ │ └── view.bit
│ │ │ │ │ └── post
│ │ │ │ │ ├── .DS_Store
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── img
│ │ │ │ │ │ ├── console.png
│ │ │ │ │ │ ├── favicon.ico
│ │ │ │ │ │ └── pager.png
│ │ │ │ │ ├── main.css
│ │ │ │ │ ├── normalize.css
│ │ │ │ │ ├── page.css
│ │ │ │ │ ├── plugins.css
│ │ │ │ │ ├── post.css
│ │ │ │ │ └── rainbow.css
│ │ │ │ ├── js
│ │ │ │ │ └── rainbow-custom.min.js
│ │ │ │ ├── screenshot.jpg
│ │ │ │ ├── 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
│ │ │ │ │ ├── img
│ │ │ │ │ │ ├── console.png
│ │ │ │ │ │ ├── cover.jpg
│ │ │ │ │ │ ├── favicon.ico
│ │ │ │ │ │ └── image.png
│ │ │ │ │ ├── main.css
│ │ │ │ │ ├── normalize.css
│ │ │ │ │ ├── page.css
│ │ │ │ │ ├── plugins.css
│ │ │ │ │ ├── post.css
│ │ │ │ │ └── rainbow.css
│ │ │ │ ├── init.bit
│ │ │ │ ├── js
│ │ │ │ │ └── rainbow-custom.min.js
│ │ │ │ ├── screenshot.jpg
│ │ │ │ ├── templates
│ │ │ │ │ └── default.bit
│ │ │ │ └── views
│ │ │ │ │ ├── blog
│ │ │ │ │ └── view.bit
│ │ │ │ │ ├── error
│ │ │ │ │ └── 404.bit
│ │ │ │ │ ├── page
│ │ │ │ │ └── view.bit
│ │ │ │ │ └── post
│ │ │ │ │ └── view.bit
│ │ │ ├── note-2
│ │ │ │ ├── config.bit
│ │ │ │ ├── css
│ │ │ │ │ ├── img
│ │ │ │ │ │ └── favicon.ico
│ │ │ │ │ ├── styles.css
│ │ │ │ │ └── styles.min.css
│ │ │ │ ├── js
│ │ │ │ │ └── scripts.js
│ │ │ │ ├── screenshot.jpg
│ │ │ │ ├── templates
│ │ │ │ │ └── default.bit
│ │ │ │ └── views
│ │ │ │ │ ├── blog
│ │ │ │ │ └── view.bit
│ │ │ │ │ ├── error
│ │ │ │ │ └── 404.bit
│ │ │ │ │ ├── page
│ │ │ │ │ └── view.bit
│ │ │ │ │ └── post
│ │ │ │ │ ├── disqus_comments.bit
│ │ │ │ │ └── view.bit
│ │ │ └── simpler
│ │ │ │ ├── .DS_Store
│ │ │ │ ├── config.bit
│ │ │ │ ├── css
│ │ │ │ ├── img
│ │ │ │ │ ├── console.png
│ │ │ │ │ ├── favicon.ico
│ │ │ │ │ └── image.png
│ │ │ │ ├── main.css
│ │ │ │ ├── normalize.css
│ │ │ │ ├── page.css
│ │ │ │ ├── plugins.css
│ │ │ │ ├── post.css
│ │ │ │ └── rainbow.css
│ │ │ │ ├── js
│ │ │ │ └── rainbow-custom.min.js
│ │ │ │ ├── screenshot.jpg
│ │ │ │ ├── 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
│ │ │ └── update.php
│ └── etc
│ │ ├── group
│ │ ├── master.passwd
│ │ ├── nsswitch.conf
│ │ ├── protocols
│ │ ├── pwd.db
│ │ ├── resolv.conf
│ │ ├── services
│ │ └── spwd.db
└── run.sh
├── nginx
├── Dockerfile
├── Makefile
├── fs
│ ├── data
│ │ ├── conf
│ │ │ ├── fastcgi.conf
│ │ │ ├── fastcgi_params
│ │ │ ├── mime.types
│ │ │ ├── nginx.conf
│ │ │ ├── scgi_params
│ │ │ └── uwsgi_params
│ │ └── www
│ │ │ ├── index.html
│ │ │ ├── logo150.png
│ │ │ └── small_h.png
│ └── etc
│ │ ├── group
│ │ ├── master.passwd
│ │ ├── nsswitch.conf
│ │ ├── protocols
│ │ ├── pwd.db
│ │ ├── resolv.conf
│ │ ├── services
│ │ └── spwd.db
└── run.sh
├── php-nibbleblog
├── Dockerfile
├── Makefile
├── fs
│ ├── data
│ │ ├── conf
│ │ │ ├── fastcgi.conf
│ │ │ ├── fastcgi_params
│ │ │ ├── mime.types
│ │ │ ├── nginx.conf
│ │ │ ├── scgi_params
│ │ │ └── uwsgi_params
│ │ └── www
│ │ │ ├── COPYRIGHT.txt
│ │ │ ├── LICENSE.txt
│ │ │ ├── admin.php
│ │ │ ├── admin
│ │ │ ├── .DS_Store
│ │ │ ├── ajax
│ │ │ │ ├── .DS_Store
│ │ │ │ ├── categories.php
│ │ │ │ ├── comments.php
│ │ │ │ ├── mobile.php
│ │ │ │ ├── pages.php
│ │ │ │ ├── posts.php
│ │ │ │ ├── posts_get_video_info.php
│ │ │ │ ├── security.bit
│ │ │ │ ├── settings.php
│ │ │ │ └── uploader.php
│ │ │ ├── boot
│ │ │ │ ├── .DS_Store
│ │ │ │ ├── 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
│ │ │ │ ├── .DS_Store
│ │ │ │ ├── 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
│ │ │ │ │ ├── jquery.tinymce.min.js
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── 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.min.js
│ │ │ ├── kernel
│ │ │ │ ├── .DS_Store
│ │ │ │ ├── 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
│ │ │ │ ├── .DS_Store
│ │ │ │ ├── easy4
│ │ │ │ │ ├── .DS_Store
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── icons
│ │ │ │ │ │ │ ├── Read_Me.txt
│ │ │ │ │ │ │ ├── fonts
│ │ │ │ │ │ │ │ ├── icomoon.dev.svg
│ │ │ │ │ │ │ │ ├── icomoon.eot
│ │ │ │ │ │ │ │ ├── icomoon.svg
│ │ │ │ │ │ │ │ ├── icomoon.ttf
│ │ │ │ │ │ │ │ └── icomoon.woff
│ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ ├── license.txt
│ │ │ │ │ │ │ ├── lte-ie7.js
│ │ │ │ │ │ │ └── style.css
│ │ │ │ │ │ ├── img
│ │ │ │ │ │ │ ├── console.png
│ │ │ │ │ │ │ ├── favicon.ico
│ │ │ │ │ │ │ ├── grey.png
│ │ │ │ │ │ │ ├── installer_bg.png
│ │ │ │ │ │ │ ├── mrnibbler.png
│ │ │ │ │ │ │ └── mrnibbler128.png
│ │ │ │ │ │ ├── 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
│ │ │ │ ├── .DS_Store
│ │ │ │ ├── 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
│ │ │ │ ├── .DS_Store
│ │ │ │ ├── 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
│ │ │ ├── content
│ │ │ └── .DS_Store
│ │ │ ├── feed.php
│ │ │ ├── index.php
│ │ │ ├── install.php
│ │ │ ├── languages
│ │ │ ├── ca_ES.bit
│ │ │ ├── da_DK.bit
│ │ │ ├── de_DE.bit
│ │ │ ├── en_US.bit
│ │ │ ├── es_ES.bit
│ │ │ ├── fa_IR
│ │ │ ├── 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
│ │ │ ├── vi_VI.bit
│ │ │ ├── zh_CN.bit
│ │ │ └── zh_TW.bit
│ │ │ ├── plugins
│ │ │ ├── .DS_Store
│ │ │ ├── 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
│ │ │ ├── .DS_Store
│ │ │ ├── echo
│ │ │ │ ├── .DS_Store
│ │ │ │ ├── config.bit
│ │ │ │ ├── css
│ │ │ │ │ ├── img
│ │ │ │ │ │ ├── button.png
│ │ │ │ │ │ ├── favicon.ico
│ │ │ │ │ │ └── logo.png
│ │ │ │ │ └── style.css
│ │ │ │ ├── js
│ │ │ │ │ └── script.js
│ │ │ │ ├── screenshot.jpg
│ │ │ │ ├── templates
│ │ │ │ │ └── default.bit
│ │ │ │ └── views
│ │ │ │ │ ├── .DS_Store
│ │ │ │ │ ├── blog
│ │ │ │ │ ├── .DS_Store
│ │ │ │ │ ├── includes
│ │ │ │ │ │ ├── pager.bit
│ │ │ │ │ │ ├── post_body.bit
│ │ │ │ │ │ ├── post_foot.bit
│ │ │ │ │ │ └── post_head.bit
│ │ │ │ │ └── view.bit
│ │ │ │ │ ├── error
│ │ │ │ │ └── 404.bit
│ │ │ │ │ ├── page
│ │ │ │ │ └── view.bit
│ │ │ │ │ └── post
│ │ │ │ │ ├── .DS_Store
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── img
│ │ │ │ │ │ ├── console.png
│ │ │ │ │ │ ├── favicon.ico
│ │ │ │ │ │ └── pager.png
│ │ │ │ │ ├── main.css
│ │ │ │ │ ├── normalize.css
│ │ │ │ │ ├── page.css
│ │ │ │ │ ├── plugins.css
│ │ │ │ │ ├── post.css
│ │ │ │ │ └── rainbow.css
│ │ │ │ ├── js
│ │ │ │ │ └── rainbow-custom.min.js
│ │ │ │ ├── screenshot.jpg
│ │ │ │ ├── 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
│ │ │ │ │ ├── img
│ │ │ │ │ │ ├── console.png
│ │ │ │ │ │ ├── cover.jpg
│ │ │ │ │ │ ├── favicon.ico
│ │ │ │ │ │ └── image.png
│ │ │ │ │ ├── main.css
│ │ │ │ │ ├── normalize.css
│ │ │ │ │ ├── page.css
│ │ │ │ │ ├── plugins.css
│ │ │ │ │ ├── post.css
│ │ │ │ │ └── rainbow.css
│ │ │ │ ├── init.bit
│ │ │ │ ├── js
│ │ │ │ │ └── rainbow-custom.min.js
│ │ │ │ ├── screenshot.jpg
│ │ │ │ ├── templates
│ │ │ │ │ └── default.bit
│ │ │ │ └── views
│ │ │ │ │ ├── blog
│ │ │ │ │ └── view.bit
│ │ │ │ │ ├── error
│ │ │ │ │ └── 404.bit
│ │ │ │ │ ├── page
│ │ │ │ │ └── view.bit
│ │ │ │ │ └── post
│ │ │ │ │ └── view.bit
│ │ │ ├── note-2
│ │ │ │ ├── config.bit
│ │ │ │ ├── css
│ │ │ │ │ ├── img
│ │ │ │ │ │ └── favicon.ico
│ │ │ │ │ ├── styles.css
│ │ │ │ │ └── styles.min.css
│ │ │ │ ├── js
│ │ │ │ │ └── scripts.js
│ │ │ │ ├── screenshot.jpg
│ │ │ │ ├── templates
│ │ │ │ │ └── default.bit
│ │ │ │ └── views
│ │ │ │ │ ├── blog
│ │ │ │ │ └── view.bit
│ │ │ │ │ ├── error
│ │ │ │ │ └── 404.bit
│ │ │ │ │ ├── page
│ │ │ │ │ └── view.bit
│ │ │ │ │ └── post
│ │ │ │ │ ├── disqus_comments.bit
│ │ │ │ │ └── view.bit
│ │ │ └── simpler
│ │ │ │ ├── .DS_Store
│ │ │ │ ├── config.bit
│ │ │ │ ├── css
│ │ │ │ ├── img
│ │ │ │ │ ├── console.png
│ │ │ │ │ ├── favicon.ico
│ │ │ │ │ └── image.png
│ │ │ │ ├── main.css
│ │ │ │ ├── normalize.css
│ │ │ │ ├── page.css
│ │ │ │ ├── plugins.css
│ │ │ │ ├── post.css
│ │ │ │ └── rainbow.css
│ │ │ │ ├── js
│ │ │ │ └── rainbow-custom.min.js
│ │ │ │ ├── screenshot.jpg
│ │ │ │ ├── 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
│ │ │ └── update.php
│ └── etc
│ │ ├── group
│ │ ├── master.passwd
│ │ ├── nsswitch.conf
│ │ ├── protocols
│ │ ├── pwd.db
│ │ ├── resolv.conf
│ │ ├── services
│ │ └── spwd.db
├── rumprun-makefs.sh
└── run.sh
├── php
├── Dockerfile
├── Makefile
├── fs
│ ├── data
│ │ ├── conf
│ │ │ ├── fastcgi.conf
│ │ │ ├── fastcgi_params
│ │ │ ├── mime.types
│ │ │ ├── nginx.conf
│ │ │ ├── scgi_params
│ │ │ └── uwsgi_params
│ │ └── www
│ │ │ ├── index.php
│ │ │ └── phpinfo.php
│ └── etc
│ │ ├── group
│ │ ├── master.passwd
│ │ ├── nsswitch.conf
│ │ ├── protocols
│ │ ├── pwd.db
│ │ ├── resolv.conf
│ │ ├── services
│ │ └── spwd.db
└── run.sh
└── rumprun-setdns.c
/.gitignore:
--------------------------------------------------------------------------------
1 | *.iso
2 | *.ffs
3 | *.bin
4 | *.bin.bz2
5 |
--------------------------------------------------------------------------------
/mysql/Dockerfile:
--------------------------------------------------------------------------------
1 | FROM alpine:latest
2 | MAINTAINER Martin Lucina Hello world
")}),n.addButton("hr",{icon:"hr",tooltip:"Horizontal line",cmd:"InsertHorizontalRule"}),n.addMenuItem("hr",{icon:"hr",text:"Horizontal line",cmd:"InsertHorizontalRule",context:"insert"})});
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/js/tinymce/plugins/media/moxieplayer.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/admin/js/tinymce/plugins/media/moxieplayer.swf
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/js/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"})});
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/js/tinymce/skins/lightgray/fonts/readme.md:
--------------------------------------------------------------------------------
1 | Icons are generated and provided by the http://icomoon.io service.
2 |
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/js/tinymce/skins/lightgray/fonts/tinymce-small.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/admin/js/tinymce/skins/lightgray/fonts/tinymce-small.eot
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/admin/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/js/tinymce/skins/lightgray/fonts/tinymce-small.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/admin/js/tinymce/skins/lightgray/fonts/tinymce-small.woff
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/js/tinymce/skins/lightgray/fonts/tinymce.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/admin/js/tinymce/skins/lightgray/fonts/tinymce.eot
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/js/tinymce/skins/lightgray/fonts/tinymce.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/admin/js/tinymce/skins/lightgray/fonts/tinymce.ttf
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/js/tinymce/skins/lightgray/fonts/tinymce.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/admin/js/tinymce/skins/lightgray/fonts/tinymce.woff
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/js/tinymce/skins/lightgray/img/anchor.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/admin/js/tinymce/skins/lightgray/img/anchor.gif
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/js/tinymce/skins/lightgray/img/loader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/admin/js/tinymce/skins/lightgray/img/loader.gif
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/js/tinymce/skins/lightgray/img/object.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/admin/js/tinymce/skins/lightgray/img/object.gif
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/js/tinymce/skins/lightgray/img/trans.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/admin/js/tinymce/skins/lightgray/img/trans.gif
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/js/tinymce/skins/lightgray/img/wline.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/admin/js/tinymce/skins/lightgray/img/wline.gif
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/kernel/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/admin/kernel/.DS_Store
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/kernel/defensio/lib/exceptions.php:
--------------------------------------------------------------------------------
1 |
10 |
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/kernel/helpers/category.class.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/kernel/helpers/number.class.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/kernel/helpers/plugin.class.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/templates/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/admin/templates/.DS_Store
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/templates/easy4/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/admin/templates/easy4/.DS_Store
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/templates/easy4/css/icons/Read_Me.txt:
--------------------------------------------------------------------------------
1 | To modify your generated font, use the *dev.svg* file, located in the *fonts* folder in this package. You can import this dev.svg file to the IcoMoon app. All the tags (class names) and the Unicode points of your glyphs are saved in this file.
2 |
3 | See the documentation for more info on how to use this package: http://icomoon.io/#docs/font-face
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/templates/easy4/css/icons/fonts/icomoon.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/admin/templates/easy4/css/icons/fonts/icomoon.eot
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/templates/easy4/css/icons/fonts/icomoon.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/admin/templates/easy4/css/icons/fonts/icomoon.ttf
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/templates/easy4/css/icons/fonts/icomoon.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/admin/templates/easy4/css/icons/fonts/icomoon.woff
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/templates/easy4/css/img/console.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/admin/templates/easy4/css/img/console.png
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/templates/easy4/css/img/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/admin/templates/easy4/css/img/favicon.ico
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/templates/easy4/css/img/grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/admin/templates/easy4/css/img/grey.png
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/templates/easy4/css/img/installer_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/admin/templates/easy4/css/img/installer_bg.png
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/templates/easy4/css/img/mrnibbler.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/admin/templates/easy4/css/img/mrnibbler.png
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/templates/easy4/css/img/mrnibbler128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/admin/templates/easy4/css/img/mrnibbler128.png
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/views/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/admin/views/.DS_Store
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/views/dashboard/view.bit:
--------------------------------------------------------------------------------
1 | 'dashboard_left') );
5 |
6 | // Quick start
7 | include('quick_start.bit');
8 |
9 | // Drafts
10 | include('drafts.bit');
11 |
12 | // Last comments
13 | include('last_comments.bit');
14 |
15 | echo Html::div_close();
16 |
17 | // RIGHT SIDE
18 | echo Html::div_open( array('class'=>'dashboard_right') );
19 |
20 | // Notifications
21 | include('notifications.bit');
22 |
23 | echo Html::div_close();
24 |
25 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/views/page/includes/buttons.bit:
--------------------------------------------------------------------------------
1 | 'form_block') );
4 | echo Html::input( array('id'=>'js_button_add', 'name'=>'button_add', 'type'=>'submit', 'value'=>$_LANG['PUBLISH'], 'class'=>'save') );
5 | echo Html::input( array('id'=>'js_button_draft', 'name'=>'button_draft', 'type'=>'submit', 'value'=>$_LANG['DRAFT'], 'class'=>'draft') );
6 | echo Html::div_close();
7 |
8 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/views/page/includes/description.bit:
--------------------------------------------------------------------------------
1 | 'form_block', 'hidden'=>!$settings['advanced_post_options']) );
6 | echo Html::label( array('class'=>'blocked', 'content'=>$_LANG['SHORT_DESCRIPTION_NO_MORE_THAN']) );
7 | echo Html::input( array('id'=>'js_description', 'name'=>'description', 'type'=>'text', 'value'=>$value) );
8 | echo Html::div_close();
9 |
10 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/views/page/includes/keywords.bit:
--------------------------------------------------------------------------------
1 | 'form_block', 'hidden'=>!$settings['advanced_post_options']) );
6 | echo Html::label( array('class'=>'blocked', 'content'=>$_LANG['KEYWORDS']) );
7 | echo Html::input( array('id'=>'js_keywords', 'name'=>'keywords', 'type'=>'text', 'value'=>$value) );
8 | echo Html::div( array('content'=>$_LANG['KEYWORDS_SEPARATED_BY_COMMA'], 'class'=>'input_tip') );
9 | echo Html::div_close();
10 |
11 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/views/page/includes/position.bit:
--------------------------------------------------------------------------------
1 | 'form_block', 'hidden'=>!$settings['advanced_post_options']) );
6 | echo Html::label( array('class'=>'blocked', 'content'=>$_LANG['POSITION']) );
7 | echo Html::select( array('name'=>'position'), $ctrlv['positions_html'], $value);
8 | echo Html::div_close();
9 |
10 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/views/page/includes/title.bit:
--------------------------------------------------------------------------------
1 | 'form_block') );
6 | echo Html::input( array('id'=>'js_title', 'name'=>'title', 'class'=>'title', 'type'=>'text', 'value'=>$value , 'placeholder'=>$_LANG['ENTER_TITLE_HERE']) );
7 | echo Html::div_close();
8 |
9 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/views/post/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/admin/views/post/.DS_Store
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/views/post/includes/buttons.bit:
--------------------------------------------------------------------------------
1 | 'form_block') );
3 | echo Html::input( array('id'=>'js_button_add', 'name'=>'button_add', 'type'=>'submit', 'value'=>$_LANG['PUBLISH'], 'class'=>'save') );
4 | echo Html::input( array('id'=>'js_button_draft', 'name'=>'button_draft', 'type'=>'submit', 'value'=>$_LANG['DRAFT'], 'class'=>'draft') );
5 | echo Html::div_close();
6 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/views/post/includes/categories.bit:
--------------------------------------------------------------------------------
1 | 'form_block') );
5 | echo Html::label( array('class'=>'blocked', 'content'=>$_LANG['SELECT_A_CATEGORY']) );
6 | echo Html::select( array('name'=>'id_cat'), $categories_options, $value);
7 | echo Html::div_close();
8 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/views/post/includes/description.bit:
--------------------------------------------------------------------------------
1 | 'form_block', 'hidden'=>!$settings['advanced_post_options']) );
5 | echo Html::label( array('class'=>'blocked', 'content'=>$_LANG['SHORT_DESCRIPTION_NO_MORE_THAN']) );
6 | echo Html::input( array('id'=>'js_description', 'name'=>'description', 'type'=>'text', 'value'=>$value) );
7 | echo Html::div_close();
8 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/views/post/includes/quote.bit:
--------------------------------------------------------------------------------
1 | 'form_block') );
5 | echo Html::textarea( array('id'=>'js_quote', 'name'=>'quote', 'content'=>$value, 'placeholder'=>$_LANG['ENTER_QUOTE_HERE']) );
6 | echo Html::div_close();
7 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/views/post/includes/tags.bit:
--------------------------------------------------------------------------------
1 | 'form_block', 'hidden'=>!$settings['advanced_post_options']) );
11 | echo Html::label( array('class'=>'blocked', 'content'=>$_LANG['TAGS']) );
12 | echo Html::input( array('id'=>'js_tags', 'name'=>'tags', 'type'=>'text', 'value'=>$value) );
13 | echo Html::div( array('content'=>$_LANG['TAGS_SEPARATED_BY_COMMA'], 'class'=>'input_tip') );
14 | echo Html::div_close();
15 |
16 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/views/post/includes/title.bit:
--------------------------------------------------------------------------------
1 | 'form_block') );
6 | echo Html::input( array('id'=>'js_title', 'class'=>'title', 'name'=>'title', 'type'=>'text', 'value'=>$value, 'placeholder'=>$_LANG['ENTER_TITLE_HERE']) );
7 | echo Html::div_close();
8 |
9 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/admin/views/user/send_forgot.bit:
--------------------------------------------------------------------------------
1 | 'js_form', 'name'=>'form', 'method'=>'post') );
4 |
5 | echo Html::div_open( array('class'=>'form_block') );
6 | echo Html::input( array('type'=>'submit', 'class'=>'forgot', 'value'=>$_LANG['REQUEST_NEW_PASSWORD']) );
7 | echo Html::div_close();
8 |
9 | echo Html::form_close();
10 |
11 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/content/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/content/.DS_Store
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/plugins/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/plugins/.DS_Store
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/plugins/about/languages/da_DK.bit:
--------------------------------------------------------------------------------
1 | 'Om',
5 | 'DESCRIPTION'=>'Skriv en kort beskrivelse af din blog eller dig selv.',
6 | 'FULL_NAME'=>'Fulde navn',
7 | 'ABOUT'=>'Om',
8 | 'PICTURE'=>'Billede',
9 | 'SUPPORT_JPG_AND_PNG_IMAGES'=>'Understøtter JPG and PNG images. Billedet bliver skaleret til 200x200px.'
10 | );
11 |
12 | ?>
13 |
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/plugins/about/languages/en_US.bit:
--------------------------------------------------------------------------------
1 | 'About',
5 | 'DESCRIPTION'=>'Write a brief description about your blog or you.',
6 | 'FULL_NAME'=>'Full name',
7 | 'ABOUT'=>'About',
8 | 'PICTURE'=>'Picture',
9 | 'SUPPORT_JPG_AND_PNG_IMAGES'=>'Support JPG and PNG images. The image will be resized to 200x200px.'
10 | );
11 |
12 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/plugins/about/languages/es_ES.bit:
--------------------------------------------------------------------------------
1 | 'Acerca de',
5 | 'DESCRIPTION'=>'Escribe una breve reseña sobre ti o sobre tu blog.',
6 | 'FULL_NAME'=>'Nombre completo',
7 | 'ABOUT'=>'Acerca de ti o sobre tu blog',
8 | 'PICTURE'=>'Imagen',
9 | 'SUPPORT_JPG_AND_PNG_IMAGES'=>'Soporta imagenes JPG y PNG. La imagen sera redimensionada a 200x200px.'
10 | );
11 |
12 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/plugins/about/languages/fr_FR.bit:
--------------------------------------------------------------------------------
1 | 'À Propos',
5 | 'DESCRIPTION'=>'Écrire une description brève à propos de vous ou de votre blog.',
6 | 'FULL_NAME'=>'Nom complet',
7 | 'ABOUT'=>'À Propos',
8 | 'PICTURE'=>'Image',
9 | 'SUPPORT_JPG_AND_PNG_IMAGES'=>'Supporte les formats d\'images JPG et PNG. L\'image sera redimensionnée en 200x200px.'
10 | );
11 |
12 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/plugins/about/languages/ru_RU.bit:
--------------------------------------------------------------------------------
1 | 'Обо мне',
5 | 'DESCRIPTION'=>'Напишите краткое описание о вашем блоге или о вас.',
6 | 'FULL_NAME'=>'Полное имя',
7 | 'ABOUT'=>'Обо мне',
8 | 'PICTURE'=>'Картинка',
9 | 'SUPPORT_JPG_AND_PNG_IMAGES'=>'Поддерживаются форматы изображений JPG и PNG. Изображение будет уменьшено до 200x200px.'
10 | );
11 |
12 | ?>
13 |
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/plugins/analytics/languages/da_DK.bit:
--------------------------------------------------------------------------------
1 | 'Google Analytics',
5 | 'DESCRIPTION'=>'Tilføj Google Analytics til din blog for at se hvordan dine besøgende interagerer med din side. Du skal bruge en Google Analytics konto for at bruge denne tilføjelse.',
6 | 'GOOGLE_ANALYTICS_ID'=>'Google Analytics ID'
7 | );
8 |
9 | ?>
10 |
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/plugins/analytics/languages/en_US.bit:
--------------------------------------------------------------------------------
1 | 'Google Analytics',
5 | 'DESCRIPTION'=>'Add Google Analytics to your blog to see how visitors interact with your site. You need an account on Google Analytics for use this plugin.',
6 | 'GOOGLE_ANALYTICS_ID'=>'Google Analytics ID'
7 | );
8 |
9 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/plugins/analytics/languages/es_ES.bit:
--------------------------------------------------------------------------------
1 | 'Google Analytics',
5 | 'DESCRIPTION'=>'Agregue Google Analytics a su blog para ver como los usuarios interactúan con su sitio. Es necesario tener una cuenta en Google Analytics para utilizar este plugin.',
6 | 'GOOGLE_ANALYTICS_ID'=>'ID de Google Analytics'
7 | );
8 |
9 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/plugins/analytics/languages/fr_FR.bit:
--------------------------------------------------------------------------------
1 | 'Google Analytics',
5 | 'DESCRIPTION'=>'Ajouter Google Analytics sur votre blog pour voir comment les visiteurs interagissent avec votre site. Vous devez avoir un compte Google Analytics pour utiliser ce plugin.',
6 | 'GOOGLE_ANALYTICS_ID'=>'ID Google Analytics'
7 | );
8 |
9 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/plugins/analytics/languages/ru_RU.bit:
--------------------------------------------------------------------------------
1 | 'Google Analytics',
5 | 'DESCRIPTION'=>'Добавьте Google Analytics в ваш блог, чтобы видеть, как посетители взаимодействуют с вашим сайтом. Для использования этого плагина Вам нужен аккаунт в Google Analytics.',
6 | 'GOOGLE_ANALYTICS_ID'=>'Google Analytics ID'
7 | );
8 |
9 | ?>
10 |
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/plugins/categories/languages/da_DK.bit:
--------------------------------------------------------------------------------
1 | 'Kategorier',
5 | 'DESCRIPTION'=>'Viser alle kategorier på din blog og gør det muligt at filtrere indlæg efter kategori.'
6 | );
7 |
8 | ?>
9 |
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/plugins/categories/languages/en_US.bit:
--------------------------------------------------------------------------------
1 | 'Categories',
5 | 'DESCRIPTION'=>'Displays all categories of your blog and allows the user to filter posts by category.'
6 | );
7 |
8 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/plugins/categories/languages/es_ES.bit:
--------------------------------------------------------------------------------
1 | 'Categorias',
5 | 'DESCRIPTION'=>'Muestra todas las categorías de su blog y permite al usuario filtrar publicaciones por categoría.'
6 | );
7 |
8 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/plugins/categories/languages/fr_FR.bit:
--------------------------------------------------------------------------------
1 | 'Catégories',
5 | 'DESCRIPTION'=>'Affiche toutes les catégories de votre blog et permet à l\'utilisateur de filtrer les messages par catégorie.'
6 | );
7 |
8 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/plugins/categories/languages/ru_RU.bit:
--------------------------------------------------------------------------------
1 | 'Категории',
5 | 'DESCRIPTION'=>'Отображает все категории в вашем блоге и позволяет пользователю выбирать записи по категории.'
6 | );
7 |
8 | ?>
9 |
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/plugins/hello/languages/da_DK.bit:
--------------------------------------------------------------------------------
1 | 'Hej verden',
5 | 'DESCRIPTION'=>'Vis hej verden.'
6 | );
7 |
8 | ?>
9 |
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/plugins/hello/languages/en_US.bit:
--------------------------------------------------------------------------------
1 | 'Hello world',
5 | 'DESCRIPTION'=>'Show hello world.'
6 | );
7 |
8 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/plugins/hello/languages/fr_FR.bit:
--------------------------------------------------------------------------------
1 | 'Hello world',
5 | 'DESCRIPTION'=>'Affiche hello world.'
6 | );
7 |
8 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/plugins/hello/languages/ru_RU.bit:
--------------------------------------------------------------------------------
1 | 'Привет Мир!',
5 | 'DESCRIPTION'=>'Показывает Привет Мир!.'
6 | );
7 |
8 | ?>
9 |
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/plugins/hello/plugin.bit:
--------------------------------------------------------------------------------
1 | 'My name or nickname',
5 | 'version'=>'1.0',
6 | 'url'=>'http://www.mysite.com'
7 | );
8 |
9 | class PLUGIN_HELLO extends Plugin
10 | {
11 | public function blog_body()
12 | {
13 | $html = ''.$Language->get('there are no posts').'
';
8 | echo '';
9 | }
10 | else
11 | {
12 | // Post
13 | foreach($posts as $post)
14 | {
15 | echo 'get('404_PAGE_NOT_FOUND') ?>
3 | get('Comments') ?>
11 |
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/themes/echo/views/post/includes/post_foot.bit:
--------------------------------------------------------------------------------
1 | disqus_enabled() )
6 | {
7 | // Disqus comments
8 | include('comments_disqus.bit');
9 | }
10 | elseif( $Comment->facebook_enabled() )
11 | {
12 | // Facebook comments
13 | include('comments_facebook.bit');
14 | }
15 | else
16 | {
17 | // Nibbleblog comments
18 | include('comments_nibbleblog.bit');
19 | }
20 | }
21 |
22 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/themes/echo/views/post/includes/post_head.bit:
--------------------------------------------------------------------------------
1 | '.$post['title'].'';
6 | }
7 | $month = Date::format($post['pub_date_unix'], '%b');
8 | $day = Date::format($post['pub_date_unix'], '%d');
9 | $year = Date::format($post['pub_date_unix'], '%Y');
10 | echo ''.$month.' '.$day.''.$year.'';
11 |
12 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/themes/echo/views/post/view.bit:
--------------------------------------------------------------------------------
1 | ';
4 |
5 | include('includes/post_head.bit');
6 | include('includes/post_body.bit');
7 | include('includes/post_foot.bit');
8 |
9 | echo '';
10 |
11 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/themes/google_simple/config.bit:
--------------------------------------------------------------------------------
1 | 'GoogleSimple',
6 | 'description'=>'Designed by Josh Peterson (www.noaesthetic.com)',
7 | 'author'=>'Diego Najar',
8 | 'version'=>'4.0',
9 | 'last_update'=>'27/10/2013', // dd/mm/yyyy
10 | 'url'=>'http://www.nibbleblog.com', // http://xxxxxxxxxxxxx
11 | 'template'=>array('blog'=>'default.bit', 'post'=>'default.bit', 'page'=>'default.bit'),
12 | 'version_supported'=>array('4.0', '4.0.1') // Nibbleblog version supported
13 | );
14 |
15 | ?>
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/themes/google_simple/css/img/console.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/themes/google_simple/css/img/console.png
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/themes/google_simple/css/img/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/themes/google_simple/css/img/favicon.ico
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/themes/google_simple/css/img/pager.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/themes/google_simple/css/img/pager.png
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/themes/google_simple/screenshot.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/nginx-nibbleblog/fs/data/www/themes/google_simple/screenshot.jpg
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/themes/google_simple/views/blog/includes/disqus_comments.bit:
--------------------------------------------------------------------------------
1 | disqus_enabled() )
3 | {
4 | ?>
5 |
6 |
16 |
17 |
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/themes/google_simple/views/blog/includes/facebook_comments.bit:
--------------------------------------------------------------------------------
1 | facebook_enabled() )
3 | {
4 | ?>
5 |
6 |
7 |
14 |
15 |
--------------------------------------------------------------------------------
/nginx-nibbleblog/fs/data/www/themes/google_simple/views/blog/includes/pager.bit:
--------------------------------------------------------------------------------
1 |
Hello world
'; 14 | 15 | return $html; 16 | } 17 | } 18 | 19 | ?> 20 | -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/html_code/languages/da_DK.bit: -------------------------------------------------------------------------------- 1 | 'HTML kode', 5 | 'DESCRIPTION'=>'Denne tilføjelse gør det muligt at indlejre HTML kode i din blog.', 6 | 'HTML_CODE'=>'HTML kode' 7 | ); 8 | 9 | ?> 10 | -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/html_code/languages/en_US.bit: -------------------------------------------------------------------------------- 1 | 'HTML code', 5 | 'DESCRIPTION'=>'This plugin allows you to embed HTML code in your blog.', 6 | 'HTML_CODE'=>'HTML Code' 7 | ); 8 | 9 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/html_code/languages/es_ES.bit: -------------------------------------------------------------------------------- 1 | 'HTML code', 5 | 'DESCRIPTION'=>'Este plugin permite incrustar código HTML en tu blog.', 6 | 'HTML_CODE'=>'HTML Code' 7 | ); 8 | 9 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/html_code/languages/fr_FR.bit: -------------------------------------------------------------------------------- 1 | 'Code HTML', 5 | 'DESCRIPTION'=>'Ce plugin vous permet d\'intégrer du code HTML dans votre blog.', 6 | 'HTML_CODE'=>'Code HTML' 7 | ); 8 | 9 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/html_code/languages/ru_RU.bit: -------------------------------------------------------------------------------- 1 | 'HTML код', 5 | 'DESCRIPTION'=>'Этот плагин позволяет вставлять HTML код в ваш блог.', 6 | 'HTML_CODE'=>'HTML код' 7 | ); 8 | 9 | ?> 10 | -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/latest_posts/languages/da_DK.bit: -------------------------------------------------------------------------------- 1 | 'Viser seneste indlæg sorteret efter dato.', 6 | 'AMOUNT'=>'Antal' 7 | ); 8 | 9 | ?> 10 | -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/latest_posts/languages/en_US.bit: -------------------------------------------------------------------------------- 1 | 'Latest posts', 5 | 'DESCRIPTION'=>'Displays latest published posts, sorted by date.', 6 | 'AMOUNT'=>'Amount' 7 | ); 8 | 9 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/latest_posts/languages/es_ES.bit: -------------------------------------------------------------------------------- 1 | 'Últimos posts', 5 | 'DESCRIPTION'=>'Muestra los últimos post publicados, ordenados por fecha.', 6 | 'AMOUNT'=>'Cantidad a mostrar' 7 | ); 8 | 9 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/latest_posts/languages/fr_FR.bit: -------------------------------------------------------------------------------- 1 | 'Derniers billets', 5 | 'DESCRIPTION'=>'Affiche les derniers billets publiés, triés par date.', 6 | 'AMOUNT'=>'Croissant' 7 | ); 8 | 9 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/latest_posts/languages/ru_RU.bit: -------------------------------------------------------------------------------- 1 | 'Последние записи', 5 | 'DESCRIPTION'=>'Отображает последние опубликованные записи, отсортированные по дате.', 6 | 'AMOUNT'=>'Количество' 7 | ); 8 | 9 | ?> 10 | -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/maintenance_mode/languages/da_DK.bit: -------------------------------------------------------------------------------- 1 | 'Vedligeholdelsestilstand', 5 | 'DESCRIPTION'=>'Sæt din blog i vedligeholdelsestilstand.', 6 | 'MESSAGE'=>'Besked' 7 | ); 8 | 9 | ?> 10 | -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/maintenance_mode/languages/en_US.bit: -------------------------------------------------------------------------------- 1 | 'Maintenance Mode', 5 | 'DESCRIPTION'=>'Put your blog into maintenance mode.', 6 | 'MESSAGE'=>'Message' 7 | ); 8 | 9 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/maintenance_mode/languages/es_ES.bit: -------------------------------------------------------------------------------- 1 | 'Modo mantenimiento', 5 | 'DESCRIPTION'=>'Ponga su blog en el modo de mantenimiento.', 6 | 'MESSAGE'=>'Mensaje' 7 | ); 8 | 9 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/maintenance_mode/languages/fr_FR.bit: -------------------------------------------------------------------------------- 1 | 'Mode Maintenance', 5 | 'DESCRIPTION'=>'Mettez votre blog en mode maintenance.', 6 | 'MESSAGE'=>'Message' 7 | ); 8 | 9 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/maintenance_mode/languages/ru_RU.bit: -------------------------------------------------------------------------------- 1 | 'Режим обслуживания', 5 | 'DESCRIPTION'=>'Переводит ваш блог в режим обслуживания.', 6 | 'MESSAGE'=>'Сообщение' 7 | ); 8 | 9 | ?> 10 | -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/mathjax/languages/en_US.bit: -------------------------------------------------------------------------------- 1 | 'MathJax', 5 | 'DESCRIPTION'=>'It lets add latex syntax on your webpage.' 6 | ); 7 | 8 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/mathjax/languages/es_ES.bit: -------------------------------------------------------------------------------- 1 | 'MathJax', 5 | 'DESCRIPTION'=>'Permite agregar fórmulas matemáticas con latex en tu página web.' 6 | ); 7 | 8 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/my_image/languages/da_DK.bit: -------------------------------------------------------------------------------- 1 | 'Mit billede', 5 | 'DESCRIPTION'=>'Vis et billede', 6 | 'CAPTION'=>'Billedtekst' 7 | ); 8 | 9 | ?> 10 | -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/my_image/languages/en_US.bit: -------------------------------------------------------------------------------- 1 | 'My image', 5 | 'DESCRIPTION'=>'Show a picture', 6 | 'CAPTION'=>'Caption' 7 | ); 8 | 9 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/my_image/languages/es_ES.bit: -------------------------------------------------------------------------------- 1 | 'Mi imagen', 5 | 'DESCRIPTION'=>'Muestra una imagen.', 6 | 'CAPTION'=>'Leyenda' 7 | ); 8 | 9 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/my_image/languages/fr_FR.bit: -------------------------------------------------------------------------------- 1 | 'Mon image', 5 | 'DESCRIPTION'=>'Afficher une image', 6 | 'CAPTION'=>'Légende' 7 | ); 8 | 9 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/my_image/languages/ru_RU.bit: -------------------------------------------------------------------------------- 1 | 'Мое изображение', 5 | 'DESCRIPTION'=>'Показывает картинку', 6 | 'CAPTION'=>'Подпись' 7 | ); 8 | 9 | ?> 10 | -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/open_graph/languages/da_DK.bit: -------------------------------------------------------------------------------- 1 | 'Open Graph', 5 | 'DESCRIPTION'=>'Open graph meta tags.' 6 | ); 7 | 8 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/open_graph/languages/en_US.bit: -------------------------------------------------------------------------------- 1 | 'Open Graph', 5 | 'DESCRIPTION'=>'Open graph meta tags.' 6 | ); 7 | 8 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/open_graph/languages/es_ES.bit: -------------------------------------------------------------------------------- 1 | 'Open Graph', 5 | 'DESCRIPTION'=>'Open graph meta tags.' 6 | ); 7 | 8 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/open_graph/languages/fr_FR.bit: -------------------------------------------------------------------------------- 1 | 'Open Graph', 5 | 'DESCRIPTION'=>'Open graph meta tags.' 6 | ); 7 | 8 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/open_graph/languages/ru_RU.bit: -------------------------------------------------------------------------------- 1 | 'Open Graph', 5 | 'DESCRIPTION'=>'Мета теги Open graph.' 6 | ); 7 | 8 | ?> 9 | -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/pages/languages/da_DK.bit: -------------------------------------------------------------------------------- 1 | 'Sider', 5 | 'DESCRIPTION'=>'Vis alle sider.' 6 | ); 7 | 8 | ?> 9 | -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/pages/languages/en_US.bit: -------------------------------------------------------------------------------- 1 | 'Pages', 5 | 'DESCRIPTION'=>'Display all pages.' 6 | ); 7 | 8 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/pages/languages/es_ES.bit: -------------------------------------------------------------------------------- 1 | 'Paginas', 5 | 'DESCRIPTION'=>'Muestra todas las paginas que hay en el blog.' 6 | ); 7 | 8 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/pages/languages/fr_FR.bit: -------------------------------------------------------------------------------- 1 | 'Pages', 5 | 'DESCRIPTION'=>'Afficher toutes les pages.' 6 | ); 7 | 8 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/pages/languages/ru_RU.bit: -------------------------------------------------------------------------------- 1 | 'Страницы', 5 | 'DESCRIPTION'=>'Показывает все страницы.' 6 | ); 7 | 8 | ?> 9 | -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/quick_links/languages/da_DK.bit: -------------------------------------------------------------------------------- 1 | 'Korte links', 5 | 'DESCRIPTION'=>'Hurtig adgang til betjeningspanelet.', 6 | 'HOME'=>'Hjem', 7 | 'DASHBOARD'=>'Betjeningspanel', 8 | 'NEW_SIMPLE_POST'=>'Nyt simpelt indlæg', 9 | 'NEW_VIDEO_POST'=>'Nyt video indlæg', 10 | 'NEW_QUOTE_POST'=>'Nyt citat indlæg' 11 | ); 12 | 13 | ?> 14 | -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/quick_links/languages/en_US.bit: -------------------------------------------------------------------------------- 1 | 'Quick Links', 5 | 'DESCRIPTION'=>'Quick access to the administration panel.', 6 | 'HOME'=>'Home', 7 | 'DASHBOARD'=>'Dashboard', 8 | 'NEW_SIMPLE_POST'=>'New Simple post', 9 | 'NEW_VIDEO_POST'=>'New Video post', 10 | 'NEW_QUOTE_POST'=>'New Quote post' 11 | ); 12 | 13 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/quick_links/languages/es_ES.bit: -------------------------------------------------------------------------------- 1 | 'Accesos rápidos', 5 | 'DESCRIPTION'=>'Accesos rápidos al panel de administración.', 6 | 'HOME'=>'Pagina de inicio', 7 | 'DASHBOARD'=>'Panel de administración', 8 | 'NEW_SIMPLE_POST'=>'Crear post simple', 9 | 'NEW_VIDEO_POST'=>'Crear video post', 10 | 'NEW_QUOTE_POST'=>'Crear post tipo cita' 11 | ); 12 | 13 | ?> 14 | -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/quick_links/languages/fr_FR.bit: -------------------------------------------------------------------------------- 1 | 'Navigation rapide', 5 | 'DESCRIPTION'=>'Accès rapide au panneau d\'administration.', 6 | 'HOME'=>'Accueil', 7 | 'DASHBOARD'=>'tableau de bord', 8 | 'NEW_SIMPLE_POST'=>'Nouveau billet simple', 9 | 'NEW_VIDEO_POST'=>'Nouveau billet Vidéo', 10 | 'NEW_QUOTE_POST'=>'Nouveau billet citation' 11 | ); 12 | 13 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/quick_links/languages/ru_RU.bit: -------------------------------------------------------------------------------- 1 | 'Быстрые ссылки', 5 | 'DESCRIPTION'=>'Быстрый доступ к панели упраления.', 6 | 'HOME'=>'Главная', 7 | 'DASHBOARD'=>'Панель управления', 8 | 'NEW_SIMPLE_POST'=>'Добавить запись', 9 | 'NEW_VIDEO_POST'=>'Добавить видео', 10 | 'NEW_QUOTE_POST'=>'Добавить цитату' 11 | ); 12 | 13 | ?> 14 | -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/slogan/languages/da_DK.bit: -------------------------------------------------------------------------------- 1 | 'Slogan', 5 | 'DESCRIPTION'=>'Dette plugin er et eksempel på, hvordan man kan ændre aspekter af bloggen på lavt niveau. For eksempel ændre sloganet til "Hej verden".' 6 | ); 7 | 8 | ?> 9 | -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/slogan/languages/en_US.bit: -------------------------------------------------------------------------------- 1 | 'Slogan', 5 | 'DESCRIPTION'=>'This plugin is an example of how to modify aspects of the blog at low level. For example changing the slogan to "Hello World".' 6 | ); 7 | 8 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/slogan/languages/es_ES.bit: -------------------------------------------------------------------------------- 1 | 'Slogan', 5 | 'DESCRIPTION'=>'Este plugin es un ejemplo de como modificar aspectos del blog a bajo nivel. Por ejemplo como modificar el slogan a "Hola Mundo".' 6 | ); 7 | 8 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/slogan/languages/fr_FR_bit: -------------------------------------------------------------------------------- 1 | 'Slogan', 5 | 'DESCRIPTION'=>'Ce plugin est un exemple qui vous présente comment modifier certains aspects de bas niveau du blog. Comme par exemple ici, modifier le slogan par “Hello World“.' 6 | ); 7 | 8 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/slogan/languages/ru_RU.bit: -------------------------------------------------------------------------------- 1 | 'Слоган', 5 | 'DESCRIPTION'=>'Этот плагин является примером, как изменить аспекты блога на низком уровне. Например изменить слоган на "Привет Мир".' 6 | ); 7 | 8 | ?> 9 | -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/sponsors/languages/da_DK.bit: -------------------------------------------------------------------------------- 1 | 'Sponsorer', 5 | 'DESCRIPTION'=>'Tilføj reklame til din blog. Du kan tilføje Google Adsense reklame eller en anden sponsor.', 6 | 'SPONSOR_CODE'=>'Sponsorkode' 7 | ); 8 | 9 | ?> 10 | -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/sponsors/languages/en_US.bit: -------------------------------------------------------------------------------- 1 | 'Sponsors', 5 | 'DESCRIPTION'=>'Add advertising to your blog. You can add Google Adsense advertising or other sponsor.', 6 | 'SPONSOR_CODE'=>'Sponsor code' 7 | ); 8 | 9 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/sponsors/languages/es_ES.bit: -------------------------------------------------------------------------------- 1 | 'Sponsors', 5 | 'DESCRIPTION'=>'Agregue publicidad a su blog. Puede añadir publicidad de Google Adsense publicidad u otro patrocinador.', 6 | 'SPONSOR_CODE'=>'Codigo del patronicador' 7 | ); 8 | 9 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/sponsors/languages/fr_FR.bit: -------------------------------------------------------------------------------- 1 | 'Sponsors', 5 | 'DESCRIPTION'=>'Ajouter la publicité sur votre blog. Vous pouvez ajouter les annonces Google Adsense ou bien celles d\'un autre sponsor.', 6 | 'SPONSOR_CODE'=>'Code de votre Sponsor' 7 | ); 8 | 9 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/sponsors/languages/ru_RU.bit: -------------------------------------------------------------------------------- 1 | 'Спонсоры', 5 | 'DESCRIPTION'=>'Добавляет рекламу в ваш блог. Вы можете добавить рекламу Google Adsense или любого другого спонсора.', 6 | 'SPONSOR_CODE'=>'Код спонсора' 7 | ); 8 | 9 | ?> 10 | -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/tag_cloud/languages/da_DK.bit: -------------------------------------------------------------------------------- 1 | 'Tag sky', 5 | 'DESCRIPTION'=>'Denne tilføjelse genererer en sky af dine tags, så besøgende kan filtrere indlæg efter tags.', 6 | 'MIN_SIZE_IN_PX'=>'Mindste størrelse for det mindst vigtige tag i pixels', 7 | 'MAX_SIZE_IN_PX'=>'Støreste størrelse for det vigtigste tag i pixels' 8 | ); 9 | 10 | ?> 11 | -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/tag_cloud/languages/en_US.bit: -------------------------------------------------------------------------------- 1 | 'Tag Cloud', 5 | 'DESCRIPTION'=>'This plugin generate a tag cloud, this way users can filter the posts by tags.', 6 | 'MIN_SIZE_IN_PX'=>'Smallest size for the tag less significant in px', 7 | 'MAX_SIZE_IN_PX'=>'Bigger size for the tag more significant in px ' 8 | ); 9 | 10 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/tag_cloud/languages/es_ES.bit: -------------------------------------------------------------------------------- 1 | 'Nube de palabras claves', 5 | 'DESCRIPTION'=>'Genera una nube de palabras claves, de esta forma los usuarios pueden filtrar los posts por palabras claves.', 6 | 'MIN_SIZE_IN_PX'=>'Tamaño mas chico del tag menos significante en px', 7 | 'MAX_SIZE_IN_PX'=>'Tamaño mas grande del tag mas significante en px' 8 | ); 9 | 10 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/tag_cloud/languages/fr_FR.bit: -------------------------------------------------------------------------------- 1 | 'Nuage de Tags', 5 | 'DESCRIPTION'=>'Ce plugin génère un nuage de tags, celui-ci permet aux utilisateurs de filtrer les messages par mots-clés.', 6 | 'MIN_SIZE_IN_PX'=>'Taille minimale en px pour le tag le moins significatif', 7 | 'MAX_SIZE_IN_PX'=>'Taille maximale en px pour le tag le plus significatif' 8 | ); 9 | 10 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/tag_cloud/languages/ru_RU.bit: -------------------------------------------------------------------------------- 1 | 'Облако тегов', 5 | 'DESCRIPTION'=>'Этот плагин генерирует облако тегов, пользователи могут фильтровать записи по тегам.', 6 | 'MIN_SIZE_IN_PX'=>'Минимальный размер для тега, значение в пикселях', 7 | 'MAX_SIZE_IN_PX'=>'Максимальный размер для тега, значение в пикселях ' 8 | ); 9 | 10 | ?> 11 | -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/twitter_cards/languages/da_DK.bit: -------------------------------------------------------------------------------- 1 | 'Twitter kort', 5 | 'DESCRIPTION'=>'Twitter-kort gør det muligt for dig at vedhæfte medieindhold til tweets, der linker til dit indhold.' 6 | ); 7 | 8 | ?> 9 | -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/twitter_cards/languages/en_US.bit: -------------------------------------------------------------------------------- 1 | 'Twitter cards', 5 | 'DESCRIPTION'=>'Twitter cards make it possible for you to attach media experiences to Tweets that link to your content.' 6 | ); 7 | 8 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/twitter_cards/languages/es_ES.bit: -------------------------------------------------------------------------------- 1 | 'Twitter Cards', 5 | 'DESCRIPTION'=>'Mejora el SEO de tu blog con Twitter Cards.' 6 | ); 7 | 8 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/twitter_cards/languages/fr_FR.bit: -------------------------------------------------------------------------------- 1 | 'Cartes Twitter', 5 | 'DESCRIPTION'=>'Les Cartes Twitter vous permettent de lier du contenu multimédia aux Tweets pointant vers vos billets.' 6 | ); 7 | 8 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/plugins/twitter_cards/languages/ru_RU.bit: -------------------------------------------------------------------------------- 1 | 'Twitter cards', 5 | 'DESCRIPTION'=>'Twitter cards позволяет вам прикрепить изображение и описание к ссылкам, которые ссылаются на ваш контент.' 6 | ); 7 | 8 | ?> 9 | -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/themes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/php-nibbleblog/fs/data/www/themes/.DS_Store -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/themes/echo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/php-nibbleblog/fs/data/www/themes/echo/.DS_Store -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/themes/echo/config.bit: -------------------------------------------------------------------------------- 1 | 'Echo', 6 | 'description'=>'Original Echo theme updated for NB 4.0', 7 | 'notes'=>'Fully responsive, Disqus and Facebook commments supported, replace logo image with your own in themes/echo/css/img/logo.png', 8 | 'author'=>'Paulo Nunes', 9 | 'version'=>'4.0', 10 | 'last_update'=>'05/02/2014', // dd/mm/yyyy 11 | 'url'=>'http://www.syndicatefx.com', // http://xxxxxxxxxxxxx 12 | 'version_supported'=>array('4.0', '4.0.1') // Nibbleblog version supported 13 | ); 14 | 15 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/themes/echo/css/img/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/php-nibbleblog/fs/data/www/themes/echo/css/img/button.png -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/themes/echo/css/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/php-nibbleblog/fs/data/www/themes/echo/css/img/favicon.ico -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/themes/echo/css/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/php-nibbleblog/fs/data/www/themes/echo/css/img/logo.png -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/themes/echo/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/php-nibbleblog/fs/data/www/themes/echo/screenshot.jpg -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/themes/echo/views/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/php-nibbleblog/fs/data/www/themes/echo/views/.DS_Store -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/themes/echo/views/blog/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unikernel-Systems/DockerConEU2015-demo/3fc4793a8b8d891a4d27f99ed33d042d28ebb37d/php-nibbleblog/fs/data/www/themes/echo/views/blog/.DS_Store -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/themes/echo/views/blog/includes/pager.bit: -------------------------------------------------------------------------------- 1 | '; 4 | 5 | if($pager['show_newer']) 6 | { 7 | echo ''.$_LANG['NEWER_POSTS'].' →'; 8 | } 9 | 10 | if($pager['show_older']) 11 | { 12 | echo '← '.$_LANG['OLDER_POSTS'].''; 13 | } 14 | 15 | echo ''; 16 | 17 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/themes/echo/views/blog/includes/post_head.bit: -------------------------------------------------------------------------------- 1 | '.Post::title().''; 7 | 8 | } 9 | $month = Date::format($post['pub_date_unix'], '%b'); 10 | $day = Date::format($post['pub_date_unix'], '%d'); 11 | $year = Date::format($post['pub_date_unix'], '%Y'); 12 | echo ''.$month.' '.$day.''.$year.''; 13 | 14 | ?> -------------------------------------------------------------------------------- /php-nibbleblog/fs/data/www/themes/echo/views/blog/view.bit: -------------------------------------------------------------------------------- 1 | '; 7 | echo '