├── COPYING ├── README.md ├── application ├── classes │ ├── Command │ │ ├── Hashes.php │ │ ├── Keys.php │ │ ├── Lists.php │ │ ├── Sets.php │ │ ├── Strings.php │ │ └── ZSets.php │ ├── Config.php │ ├── Controller │ │ ├── Base.php │ │ ├── Command.php │ │ └── Index.php │ ├── Exceptions.php │ ├── Helper │ │ ├── Auth.php │ │ ├── Hashes.php │ │ ├── Info.php │ │ ├── Keys.php │ │ ├── Lists.php │ │ ├── Navigation.php │ │ ├── Strings.php │ │ ├── URL.php │ │ └── ZSets.php │ ├── History.php │ ├── Paginator.php │ ├── R.php │ ├── Request.php │ └── View.php ├── config.php └── view │ ├── exception.php │ ├── footer.php │ ├── head.php │ ├── help.php │ ├── layout.php │ ├── login.php │ ├── paginator.php │ ├── tables │ ├── 404.php │ ├── base.php │ ├── exception.php │ ├── get.php │ ├── hgetall.php │ ├── info.php │ ├── keys.php │ ├── lrange.php │ ├── ping.php │ ├── randomkey.php │ ├── smembers.php │ ├── ttl.php │ └── zrange.php │ └── topbar.php ├── tools ├── create-dump-keys.php ├── create_tree.php └── redump.php └── www ├── css ├── bootstrap.css ├── main.css └── smoothness │ ├── images │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ ├── ui-bg_flat_75_ffffff_40x100.png │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ ├── ui-bg_glass_65_ffffff_1x400.png │ ├── ui-bg_glass_75_dadada_1x400.png │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ ├── ui-bg_glass_95_fef1ec_1x400.png │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ ├── ui-icons_222222_256x240.png │ ├── ui-icons_2e83ff_256x240.png │ ├── ui-icons_454545_256x240.png │ ├── ui-icons_888888_256x240.png │ └── ui-icons_cd0a0a_256x240.png │ └── jquery-ui-1.8.17.custom.css ├── favicon.ico ├── i ├── ajax-loader.gif └── empty.png ├── img ├── glyphicons-halflings-white.png ├── glyphicons-halflings.png └── glyphicons │ ├── glyphicons_009_magic.png │ ├── glyphicons_042_group.png │ ├── glyphicons_079_podium.png │ ├── glyphicons_082_roundabout.png │ ├── glyphicons_155_show_thumbnails.png │ ├── glyphicons_163_iphone.png │ ├── glyphicons_214_resize_small.png │ └── glyphicons_266_book_open.png ├── index.php └── js ├── bootstrap-alert.js ├── bootstrap-button.js ├── bootstrap-carousel.js ├── bootstrap-collapse.js ├── bootstrap-dropdown.js ├── bootstrap-modal.js ├── bootstrap-popover.js ├── bootstrap-scrollspy.js ├── bootstrap-tab.js ├── bootstrap-tooltip.js ├── bootstrap-transition.js ├── bootstrap-typeahead.js ├── html5.js ├── jquery-1.7.1.min.js ├── jquery-ui-1.8.17.custom.min.js ├── jquery.history.js ├── jquery.hotkeys.js └── main.js /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/README.md -------------------------------------------------------------------------------- /application/classes/Command/Hashes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/classes/Command/Hashes.php -------------------------------------------------------------------------------- /application/classes/Command/Keys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/classes/Command/Keys.php -------------------------------------------------------------------------------- /application/classes/Command/Lists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/classes/Command/Lists.php -------------------------------------------------------------------------------- /application/classes/Command/Sets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/classes/Command/Sets.php -------------------------------------------------------------------------------- /application/classes/Command/Strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/classes/Command/Strings.php -------------------------------------------------------------------------------- /application/classes/Command/ZSets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/classes/Command/ZSets.php -------------------------------------------------------------------------------- /application/classes/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/classes/Config.php -------------------------------------------------------------------------------- /application/classes/Controller/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/classes/Controller/Base.php -------------------------------------------------------------------------------- /application/classes/Controller/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/classes/Controller/Command.php -------------------------------------------------------------------------------- /application/classes/Controller/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/classes/Controller/Index.php -------------------------------------------------------------------------------- /application/classes/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/classes/Exceptions.php -------------------------------------------------------------------------------- /application/classes/Helper/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/classes/Helper/Auth.php -------------------------------------------------------------------------------- /application/classes/Helper/Hashes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/classes/Helper/Hashes.php -------------------------------------------------------------------------------- /application/classes/Helper/Info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/classes/Helper/Info.php -------------------------------------------------------------------------------- /application/classes/Helper/Keys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/classes/Helper/Keys.php -------------------------------------------------------------------------------- /application/classes/Helper/Lists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/classes/Helper/Lists.php -------------------------------------------------------------------------------- /application/classes/Helper/Navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/classes/Helper/Navigation.php -------------------------------------------------------------------------------- /application/classes/Helper/Strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/classes/Helper/Strings.php -------------------------------------------------------------------------------- /application/classes/Helper/URL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/classes/Helper/URL.php -------------------------------------------------------------------------------- /application/classes/Helper/ZSets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/classes/Helper/ZSets.php -------------------------------------------------------------------------------- /application/classes/History.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/classes/History.php -------------------------------------------------------------------------------- /application/classes/Paginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/classes/Paginator.php -------------------------------------------------------------------------------- /application/classes/R.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/classes/R.php -------------------------------------------------------------------------------- /application/classes/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/classes/Request.php -------------------------------------------------------------------------------- /application/classes/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/classes/View.php -------------------------------------------------------------------------------- /application/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/config.php -------------------------------------------------------------------------------- /application/view/exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/view/exception.php -------------------------------------------------------------------------------- /application/view/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/view/footer.php -------------------------------------------------------------------------------- /application/view/head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/view/head.php -------------------------------------------------------------------------------- /application/view/help.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/view/help.php -------------------------------------------------------------------------------- /application/view/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/view/layout.php -------------------------------------------------------------------------------- /application/view/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/view/login.php -------------------------------------------------------------------------------- /application/view/paginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/view/paginator.php -------------------------------------------------------------------------------- /application/view/tables/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/view/tables/404.php -------------------------------------------------------------------------------- /application/view/tables/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/view/tables/base.php -------------------------------------------------------------------------------- /application/view/tables/exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/view/tables/exception.php -------------------------------------------------------------------------------- /application/view/tables/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/view/tables/get.php -------------------------------------------------------------------------------- /application/view/tables/hgetall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/view/tables/hgetall.php -------------------------------------------------------------------------------- /application/view/tables/info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/view/tables/info.php -------------------------------------------------------------------------------- /application/view/tables/keys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/view/tables/keys.php -------------------------------------------------------------------------------- /application/view/tables/lrange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/view/tables/lrange.php -------------------------------------------------------------------------------- /application/view/tables/ping.php: -------------------------------------------------------------------------------- 1 |

PONG

-------------------------------------------------------------------------------- /application/view/tables/randomkey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/view/tables/randomkey.php -------------------------------------------------------------------------------- /application/view/tables/smembers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/view/tables/smembers.php -------------------------------------------------------------------------------- /application/view/tables/ttl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/view/tables/ttl.php -------------------------------------------------------------------------------- /application/view/tables/zrange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/view/tables/zrange.php -------------------------------------------------------------------------------- /application/view/topbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/application/view/topbar.php -------------------------------------------------------------------------------- /tools/create-dump-keys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/tools/create-dump-keys.php -------------------------------------------------------------------------------- /tools/create_tree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/tools/create_tree.php -------------------------------------------------------------------------------- /tools/redump.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/tools/redump.php -------------------------------------------------------------------------------- /www/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/css/bootstrap.css -------------------------------------------------------------------------------- /www/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/css/main.css -------------------------------------------------------------------------------- /www/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /www/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /www/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /www/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /www/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /www/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /www/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /www/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /www/css/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/css/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /www/css/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/css/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /www/css/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/css/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /www/css/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/css/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /www/css/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/css/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /www/css/smoothness/jquery-ui-1.8.17.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/css/smoothness/jquery-ui-1.8.17.custom.css -------------------------------------------------------------------------------- /www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/favicon.ico -------------------------------------------------------------------------------- /www/i/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/i/ajax-loader.gif -------------------------------------------------------------------------------- /www/i/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/i/empty.png -------------------------------------------------------------------------------- /www/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /www/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /www/img/glyphicons/glyphicons_009_magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/img/glyphicons/glyphicons_009_magic.png -------------------------------------------------------------------------------- /www/img/glyphicons/glyphicons_042_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/img/glyphicons/glyphicons_042_group.png -------------------------------------------------------------------------------- /www/img/glyphicons/glyphicons_079_podium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/img/glyphicons/glyphicons_079_podium.png -------------------------------------------------------------------------------- /www/img/glyphicons/glyphicons_082_roundabout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/img/glyphicons/glyphicons_082_roundabout.png -------------------------------------------------------------------------------- /www/img/glyphicons/glyphicons_155_show_thumbnails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/img/glyphicons/glyphicons_155_show_thumbnails.png -------------------------------------------------------------------------------- /www/img/glyphicons/glyphicons_163_iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/img/glyphicons/glyphicons_163_iphone.png -------------------------------------------------------------------------------- /www/img/glyphicons/glyphicons_214_resize_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/img/glyphicons/glyphicons_214_resize_small.png -------------------------------------------------------------------------------- /www/img/glyphicons/glyphicons_266_book_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/img/glyphicons/glyphicons_266_book_open.png -------------------------------------------------------------------------------- /www/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/index.php -------------------------------------------------------------------------------- /www/js/bootstrap-alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/js/bootstrap-alert.js -------------------------------------------------------------------------------- /www/js/bootstrap-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/js/bootstrap-button.js -------------------------------------------------------------------------------- /www/js/bootstrap-carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/js/bootstrap-carousel.js -------------------------------------------------------------------------------- /www/js/bootstrap-collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/js/bootstrap-collapse.js -------------------------------------------------------------------------------- /www/js/bootstrap-dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/js/bootstrap-dropdown.js -------------------------------------------------------------------------------- /www/js/bootstrap-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/js/bootstrap-modal.js -------------------------------------------------------------------------------- /www/js/bootstrap-popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/js/bootstrap-popover.js -------------------------------------------------------------------------------- /www/js/bootstrap-scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/js/bootstrap-scrollspy.js -------------------------------------------------------------------------------- /www/js/bootstrap-tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/js/bootstrap-tab.js -------------------------------------------------------------------------------- /www/js/bootstrap-tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/js/bootstrap-tooltip.js -------------------------------------------------------------------------------- /www/js/bootstrap-transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/js/bootstrap-transition.js -------------------------------------------------------------------------------- /www/js/bootstrap-typeahead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/js/bootstrap-typeahead.js -------------------------------------------------------------------------------- /www/js/html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/js/html5.js -------------------------------------------------------------------------------- /www/js/jquery-1.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/js/jquery-1.7.1.min.js -------------------------------------------------------------------------------- /www/js/jquery-ui-1.8.17.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/js/jquery-ui-1.8.17.custom.min.js -------------------------------------------------------------------------------- /www/js/jquery.history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/js/jquery.history.js -------------------------------------------------------------------------------- /www/js/jquery.hotkeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/js/jquery.hotkeys.js -------------------------------------------------------------------------------- /www/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ukko/readmin/HEAD/www/js/main.js --------------------------------------------------------------------------------