├── .gitignore ├── .gitmodules ├── .htaccess ├── LICENSE.txt ├── README.md ├── config ├── bootstrap.php ├── bootstrap │ ├── access.php │ ├── auth.php │ ├── browser_debug.php │ ├── connections.php │ ├── dependencies.php │ ├── errors.php │ ├── facebook.php │ ├── media.php │ ├── querylogger.php │ ├── session.php │ └── templates.php └── routes.php ├── controllers ├── BlocksController.php ├── MenusController.php ├── MinervaController.php ├── PagesController.php └── UsersController.php ├── extensions ├── adapter │ ├── empty │ ├── security │ │ └── auth │ │ │ └── Minerva.php │ ├── storage │ │ └── session │ │ │ └── Model.php │ └── template │ │ └── view │ │ └── Curl.php ├── command │ └── empty ├── data │ └── source │ │ └── empty ├── helper │ ├── Block.php │ ├── MinervaForm.php │ ├── MinervaHtml.php │ ├── MinervaMenu.php │ ├── MinervaPaginator.php │ ├── MinervaSocial.php │ ├── MinervaTime.php │ ├── Paginator.php │ └── Thumbnail.php └── util │ ├── Theme.php │ └── Util.php ├── index.php ├── libraries ├── _source │ └── empty └── util │ └── Debug.php ├── models ├── Asset.php ├── Block.php ├── Menu.php ├── MinervaModel.php ├── Page.php ├── Session.php └── User.php ├── resources ├── g11n │ └── empty └── tmp │ ├── logs │ └── empty │ └── tests │ └── empty ├── tests ├── cases │ ├── controllers │ │ ├── MinervaControllerTest.php │ │ ├── UsersControllerTest.php │ │ └── empty │ ├── extensions │ │ ├── adapter │ │ │ ├── empty │ │ │ └── security │ │ │ │ └── auth │ │ │ │ └── MinervaTest.php │ │ ├── command │ │ │ └── empty │ │ ├── data │ │ │ └── source │ │ │ │ └── empty │ │ ├── helper │ │ │ └── empty │ │ └── util │ │ │ ├── ThemeTest.php │ │ │ └── UtilTest.php │ └── models │ │ ├── MinervaModelTest.php │ │ ├── UserTest.php │ │ └── empty ├── functional │ └── empty ├── integration │ └── empty └── mocks │ ├── data │ ├── MockFacebookUser.php │ ├── MockPage.php │ └── MockUser.php │ └── empty ├── views ├── _admin │ ├── blocks │ │ ├── create.html.php │ │ ├── index.html.php │ │ ├── read.html.php │ │ ├── static │ │ │ └── example.html.php │ │ └── update.html.php │ ├── layouts │ │ ├── default.html.php │ │ └── static │ │ │ └── default.html.php │ ├── menus │ │ ├── create.html.php │ │ └── static │ │ │ └── main_administration.html.php │ ├── pages │ │ ├── create.html.php │ │ ├── index.html.php │ │ ├── read.html.php │ │ ├── static │ │ │ ├── home.html.php │ │ │ └── system_status.html.php │ │ └── update.html.php │ └── users │ │ ├── create.html.php │ │ ├── index.html.php │ │ ├── login.html.php │ │ ├── read.html.php │ │ ├── register.html.php │ │ └── update.html.php ├── _errors │ ├── dependencies.html.php │ ├── development.html.php │ └── production.html.php ├── _missing │ ├── missing_block_template.html.php │ ├── missing_layout.html.php │ └── missing_template.html.php ├── blocks │ └── static │ │ └── example.html.php ├── elements │ ├── empty │ ├── example_element.html.php │ └── flash_message.html.php ├── layouts │ ├── blank.html.php │ ├── default.html.php │ ├── error.html.php │ ├── error_development.html.php │ └── static │ │ └── default.html.php ├── pages │ ├── index.html.php │ ├── read.html.php │ └── static │ │ └── home.html.php └── users │ ├── login.html.php │ ├── read.html.php │ └── register.html.php └── webroot ├── .htaccess ├── css ├── 960.css ├── content.css ├── grid.css ├── ie.css ├── ie6.css ├── jquery │ ├── jquery.pnotify.default.css │ ├── jquery.pnotify.default.icons.css │ ├── themes │ │ └── 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.6.custom.css │ └── tipsy.css ├── layout.css ├── minerva.css ├── minerva_admin.css ├── nav.css ├── plain.css ├── reset.css ├── second_test.less ├── test.less ├── test.less.css └── text.css ├── favicon.ico ├── img ├── 150x150 │ └── arnold.jpg ├── admin-header-bg-red.png ├── arnold.jpg ├── bullet_toggle_minus.png ├── empty ├── fb-login-button.png ├── minerva-logo-red.png └── tipsy.gif ├── index.php ├── js ├── compress-output.pack.js ├── empty ├── jquery-fluid16.js ├── jquery │ ├── jquery-1.4.4.min.js │ ├── jquery-ui-1.8.6.custom.min.js │ ├── jquery.pnotify.min.js │ ├── jquery.tagger.js │ └── jquery.tipsy.js ├── test.js └── tiny_mce │ ├── jquery.tinymce.js │ ├── langs │ └── en.js │ ├── license.txt │ ├── plugins │ ├── advhr │ │ ├── css │ │ │ └── advhr.css │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── js │ │ │ └── rule.js │ │ ├── langs │ │ │ └── en_dlg.js │ │ └── rule.htm │ ├── advimage │ │ ├── css │ │ │ └── advimage.css │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── image.htm │ │ ├── img │ │ │ └── sample.gif │ │ ├── js │ │ │ └── image.js │ │ └── langs │ │ │ └── en_dlg.js │ ├── advlink │ │ ├── css │ │ │ └── advlink.css │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── js │ │ │ └── advlink.js │ │ ├── langs │ │ │ └── en_dlg.js │ │ └── link.htm │ ├── advlist │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── autoresize │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── autosave │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ └── langs │ │ │ └── en.js │ ├── bbcode │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── contextmenu │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── directionality │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── emotions │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── emotions.htm │ │ ├── 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 │ │ ├── js │ │ │ └── emotions.js │ │ └── langs │ │ │ └── en_dlg.js │ ├── example │ │ ├── dialog.htm │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── img │ │ │ └── example.gif │ │ ├── js │ │ │ └── dialog.js │ │ └── langs │ │ │ ├── en.js │ │ │ └── en_dlg.js │ ├── fullpage │ │ ├── css │ │ │ └── fullpage.css │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── fullpage.htm │ │ ├── js │ │ │ └── fullpage.js │ │ └── langs │ │ │ └── en_dlg.js │ ├── fullscreen │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ └── fullscreen.htm │ ├── iespell │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── inlinepopups │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── skins │ │ │ └── clearlooks2 │ │ │ │ ├── img │ │ │ │ ├── alert.gif │ │ │ │ ├── button.gif │ │ │ │ ├── buttons.gif │ │ │ │ ├── confirm.gif │ │ │ │ ├── corners.gif │ │ │ │ ├── horizontal.gif │ │ │ │ └── vertical.gif │ │ │ │ └── window.css │ │ └── template.htm │ ├── insertdatetime │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── layer │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── legacyoutput │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── media │ │ ├── css │ │ │ ├── content.css │ │ │ └── media.css │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── img │ │ │ ├── flash.gif │ │ │ ├── flv_player.swf │ │ │ ├── quicktime.gif │ │ │ ├── realmedia.gif │ │ │ ├── shockwave.gif │ │ │ ├── trans.gif │ │ │ └── windowsmedia.gif │ │ ├── js │ │ │ ├── embed.js │ │ │ └── media.js │ │ ├── langs │ │ │ └── en_dlg.js │ │ └── media.htm │ ├── nonbreaking │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── noneditable │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── pagebreak │ │ ├── css │ │ │ └── content.css │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ └── img │ │ │ ├── pagebreak.gif │ │ │ └── trans.gif │ ├── paste │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── js │ │ │ ├── pastetext.js │ │ │ └── pasteword.js │ │ ├── langs │ │ │ └── en_dlg.js │ │ ├── pastetext.htm │ │ └── pasteword.htm │ ├── preview │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── example.html │ │ ├── jscripts │ │ │ └── embed.js │ │ └── preview.html │ ├── print │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── save │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── searchreplace │ │ ├── css │ │ │ └── searchreplace.css │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── js │ │ │ └── searchreplace.js │ │ ├── langs │ │ │ └── en_dlg.js │ │ └── searchreplace.htm │ ├── spellchecker │ │ ├── css │ │ │ └── content.css │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ └── img │ │ │ └── wline.gif │ ├── style │ │ ├── css │ │ │ └── props.css │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── js │ │ │ └── props.js │ │ ├── langs │ │ │ └── en_dlg.js │ │ └── props.htm │ ├── swampy_browser_1.2 │ │ ├── configs.php │ │ ├── index.php │ │ ├── js │ │ │ └── fim.js │ │ ├── lang │ │ │ └── en.php │ │ ├── license.txt │ │ ├── sb.js │ │ ├── scripts │ │ │ ├── add_dir.php │ │ │ ├── common.php │ │ │ ├── delete_dir.php │ │ │ ├── delete_file.php │ │ │ ├── dir_listing.php │ │ │ ├── file_listing.php │ │ │ ├── format_listing.php │ │ │ ├── preview.php │ │ │ ├── rename.php │ │ │ ├── upload_file.php │ │ │ └── upload_image.php │ │ └── styles │ │ │ ├── cursors │ │ │ ├── grab.cur │ │ │ └── grabbing.cur │ │ │ ├── default.css │ │ │ └── images │ │ │ ├── alert.png │ │ │ ├── application.png │ │ │ ├── code.png │ │ │ ├── content_corner.png │ │ │ ├── content_side.png │ │ │ ├── content_top.png │ │ │ ├── css.png │ │ │ ├── db.png │ │ │ ├── directory.png │ │ │ ├── doc.png │ │ │ ├── done.png │ │ │ ├── error.png │ │ │ ├── file-loader.gif │ │ │ ├── file.png │ │ │ ├── film.png │ │ │ ├── flash.png │ │ │ ├── folder_add.png │ │ │ ├── html.png │ │ │ ├── info.png │ │ │ ├── java.png │ │ │ ├── linux.png │ │ │ ├── loader.gif │ │ │ ├── music.png │ │ │ ├── options.png │ │ │ ├── parent.png │ │ │ ├── pdf.png │ │ │ ├── php.png │ │ │ ├── picture.png │ │ │ ├── ppt.png │ │ │ ├── psd.png │ │ │ ├── row_view.png │ │ │ ├── ruby.png │ │ │ ├── script.png │ │ │ ├── thumb_bg.png │ │ │ ├── thumb_bg_s.png │ │ │ ├── thumb_view.png │ │ │ ├── txt.png │ │ │ ├── upload_file.png │ │ │ ├── upload_image.png │ │ │ ├── xls.png │ │ │ └── zip.png │ ├── tabfocus │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── table │ │ ├── cell.htm │ │ ├── css │ │ │ ├── cell.css │ │ │ ├── row.css │ │ │ └── table.css │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── js │ │ │ ├── cell.js │ │ │ ├── merge_cells.js │ │ │ ├── row.js │ │ │ └── table.js │ │ ├── langs │ │ │ └── en_dlg.js │ │ ├── merge_cells.htm │ │ ├── row.htm │ │ └── table.htm │ ├── template │ │ ├── blank.htm │ │ ├── css │ │ │ └── template.css │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── js │ │ │ └── template.js │ │ ├── langs │ │ │ └── en_dlg.js │ │ └── template.htm │ ├── visualchars │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── wordcount │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ └── xhtmlxtras │ │ ├── abbr.htm │ │ ├── acronym.htm │ │ ├── attributes.htm │ │ ├── cite.htm │ │ ├── css │ │ ├── attributes.css │ │ └── popup.css │ │ ├── del.htm │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── ins.htm │ │ ├── js │ │ ├── abbr.js │ │ ├── acronym.js │ │ ├── attributes.js │ │ ├── cite.js │ │ ├── del.js │ │ ├── element_common.js │ │ └── ins.js │ │ └── langs │ │ └── en_dlg.js │ ├── themes │ ├── advanced │ │ ├── about.htm │ │ ├── anchor.htm │ │ ├── charmap.htm │ │ ├── color_picker.htm │ │ ├── editor_template.js │ │ ├── editor_template_src.js │ │ ├── image.htm │ │ ├── img │ │ │ ├── colorpicker.jpg │ │ │ └── icons.gif │ │ ├── js │ │ │ ├── about.js │ │ │ ├── anchor.js │ │ │ ├── charmap.js │ │ │ ├── color_picker.js │ │ │ ├── image.js │ │ │ ├── link.js │ │ │ └── source_editor.js │ │ ├── langs │ │ │ ├── en.js │ │ │ └── en_dlg.js │ │ ├── link.htm │ │ ├── skins │ │ │ ├── default │ │ │ │ ├── content.css │ │ │ │ ├── dialog.css │ │ │ │ ├── img │ │ │ │ │ ├── buttons.png │ │ │ │ │ ├── items.gif │ │ │ │ │ ├── menu_arrow.gif │ │ │ │ │ ├── menu_check.gif │ │ │ │ │ ├── progress.gif │ │ │ │ │ └── tabs.gif │ │ │ │ └── ui.css │ │ │ └── o2k7 │ │ │ │ ├── content.css │ │ │ │ ├── dialog.css │ │ │ │ ├── img │ │ │ │ ├── button_bg.png │ │ │ │ ├── button_bg_black.png │ │ │ │ └── button_bg_silver.png │ │ │ │ ├── ui.css │ │ │ │ ├── ui_black.css │ │ │ │ └── ui_silver.css │ │ └── source_editor.htm │ └── simple │ │ ├── editor_template.js │ │ ├── editor_template_src.js │ │ ├── img │ │ └── icons.gif │ │ ├── langs │ │ └── en.js │ │ └── skins │ │ ├── default │ │ ├── content.css │ │ └── ui.css │ │ └── o2k7 │ │ ├── content.css │ │ ├── img │ │ └── button_bg.png │ │ └── ui.css │ ├── tiny_mce.js │ ├── tiny_mce_popup.js │ ├── tiny_mce_src.js │ └── utils │ ├── editable_selects.js │ ├── form_utils.js │ ├── mctabs.js │ └── validate.js └── xdebug_test.php /.gitignore: -------------------------------------------------------------------------------- 1 | Minerva.komodoproject 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/.gitmodules -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/.htaccess -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/README.md -------------------------------------------------------------------------------- /config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/config/bootstrap.php -------------------------------------------------------------------------------- /config/bootstrap/access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/config/bootstrap/access.php -------------------------------------------------------------------------------- /config/bootstrap/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/config/bootstrap/auth.php -------------------------------------------------------------------------------- /config/bootstrap/browser_debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/config/bootstrap/browser_debug.php -------------------------------------------------------------------------------- /config/bootstrap/connections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/config/bootstrap/connections.php -------------------------------------------------------------------------------- /config/bootstrap/dependencies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/config/bootstrap/dependencies.php -------------------------------------------------------------------------------- /config/bootstrap/errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/config/bootstrap/errors.php -------------------------------------------------------------------------------- /config/bootstrap/facebook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/config/bootstrap/facebook.php -------------------------------------------------------------------------------- /config/bootstrap/media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/config/bootstrap/media.php -------------------------------------------------------------------------------- /config/bootstrap/querylogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/config/bootstrap/querylogger.php -------------------------------------------------------------------------------- /config/bootstrap/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/config/bootstrap/session.php -------------------------------------------------------------------------------- /config/bootstrap/templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/config/bootstrap/templates.php -------------------------------------------------------------------------------- /config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/config/routes.php -------------------------------------------------------------------------------- /controllers/BlocksController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/controllers/BlocksController.php -------------------------------------------------------------------------------- /controllers/MenusController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/controllers/MenusController.php -------------------------------------------------------------------------------- /controllers/MinervaController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/controllers/MinervaController.php -------------------------------------------------------------------------------- /controllers/PagesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/controllers/PagesController.php -------------------------------------------------------------------------------- /controllers/UsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/controllers/UsersController.php -------------------------------------------------------------------------------- /extensions/adapter/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/adapter/security/auth/Minerva.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/extensions/adapter/security/auth/Minerva.php -------------------------------------------------------------------------------- /extensions/adapter/storage/session/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/extensions/adapter/storage/session/Model.php -------------------------------------------------------------------------------- /extensions/adapter/template/view/Curl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/extensions/adapter/template/view/Curl.php -------------------------------------------------------------------------------- /extensions/command/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/data/source/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/helper/Block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/extensions/helper/Block.php -------------------------------------------------------------------------------- /extensions/helper/MinervaForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/extensions/helper/MinervaForm.php -------------------------------------------------------------------------------- /extensions/helper/MinervaHtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/extensions/helper/MinervaHtml.php -------------------------------------------------------------------------------- /extensions/helper/MinervaMenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/extensions/helper/MinervaMenu.php -------------------------------------------------------------------------------- /extensions/helper/MinervaPaginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/extensions/helper/MinervaPaginator.php -------------------------------------------------------------------------------- /extensions/helper/MinervaSocial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/extensions/helper/MinervaSocial.php -------------------------------------------------------------------------------- /extensions/helper/MinervaTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/extensions/helper/MinervaTime.php -------------------------------------------------------------------------------- /extensions/helper/Paginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/extensions/helper/Paginator.php -------------------------------------------------------------------------------- /extensions/helper/Thumbnail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/extensions/helper/Thumbnail.php -------------------------------------------------------------------------------- /extensions/util/Theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/extensions/util/Theme.php -------------------------------------------------------------------------------- /extensions/util/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/extensions/util/Util.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/index.php -------------------------------------------------------------------------------- /libraries/_source/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/util/Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/libraries/util/Debug.php -------------------------------------------------------------------------------- /models/Asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/models/Asset.php -------------------------------------------------------------------------------- /models/Block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/models/Block.php -------------------------------------------------------------------------------- /models/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/models/Menu.php -------------------------------------------------------------------------------- /models/MinervaModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/models/MinervaModel.php -------------------------------------------------------------------------------- /models/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/models/Page.php -------------------------------------------------------------------------------- /models/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/models/Session.php -------------------------------------------------------------------------------- /models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/models/User.php -------------------------------------------------------------------------------- /resources/g11n/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tmp/logs/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tmp/tests/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cases/controllers/MinervaControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/tests/cases/controllers/MinervaControllerTest.php -------------------------------------------------------------------------------- /tests/cases/controllers/UsersControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/tests/cases/controllers/UsersControllerTest.php -------------------------------------------------------------------------------- /tests/cases/controllers/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cases/extensions/adapter/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cases/extensions/adapter/security/auth/MinervaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/tests/cases/extensions/adapter/security/auth/MinervaTest.php -------------------------------------------------------------------------------- /tests/cases/extensions/command/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cases/extensions/data/source/empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/cases/extensions/helper/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cases/extensions/util/ThemeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/tests/cases/extensions/util/ThemeTest.php -------------------------------------------------------------------------------- /tests/cases/extensions/util/UtilTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/tests/cases/extensions/util/UtilTest.php -------------------------------------------------------------------------------- /tests/cases/models/MinervaModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/tests/cases/models/MinervaModelTest.php -------------------------------------------------------------------------------- /tests/cases/models/UserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/tests/cases/models/UserTest.php -------------------------------------------------------------------------------- /tests/cases/models/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mocks/data/MockFacebookUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/tests/mocks/data/MockFacebookUser.php -------------------------------------------------------------------------------- /tests/mocks/data/MockPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/tests/mocks/data/MockPage.php -------------------------------------------------------------------------------- /tests/mocks/data/MockUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/tests/mocks/data/MockUser.php -------------------------------------------------------------------------------- /tests/mocks/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/_admin/blocks/create.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/_admin/blocks/create.html.php -------------------------------------------------------------------------------- /views/_admin/blocks/index.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/_admin/blocks/index.html.php -------------------------------------------------------------------------------- /views/_admin/blocks/read.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/_admin/blocks/read.html.php -------------------------------------------------------------------------------- /views/_admin/blocks/static/example.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/_admin/blocks/static/example.html.php -------------------------------------------------------------------------------- /views/_admin/blocks/update.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/_admin/blocks/update.html.php -------------------------------------------------------------------------------- /views/_admin/layouts/default.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/_admin/layouts/default.html.php -------------------------------------------------------------------------------- /views/_admin/layouts/static/default.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/_admin/layouts/static/default.html.php -------------------------------------------------------------------------------- /views/_admin/menus/create.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/_admin/menus/create.html.php -------------------------------------------------------------------------------- /views/_admin/menus/static/main_administration.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/_admin/menus/static/main_administration.html.php -------------------------------------------------------------------------------- /views/_admin/pages/create.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/_admin/pages/create.html.php -------------------------------------------------------------------------------- /views/_admin/pages/index.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/_admin/pages/index.html.php -------------------------------------------------------------------------------- /views/_admin/pages/read.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/_admin/pages/read.html.php -------------------------------------------------------------------------------- /views/_admin/pages/static/home.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/_admin/pages/static/home.html.php -------------------------------------------------------------------------------- /views/_admin/pages/static/system_status.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/_admin/pages/static/system_status.html.php -------------------------------------------------------------------------------- /views/_admin/pages/update.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/_admin/pages/update.html.php -------------------------------------------------------------------------------- /views/_admin/users/create.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/_admin/users/create.html.php -------------------------------------------------------------------------------- /views/_admin/users/index.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/_admin/users/index.html.php -------------------------------------------------------------------------------- /views/_admin/users/login.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/_admin/users/login.html.php -------------------------------------------------------------------------------- /views/_admin/users/read.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/_admin/users/read.html.php -------------------------------------------------------------------------------- /views/_admin/users/register.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/_admin/users/register.html.php -------------------------------------------------------------------------------- /views/_admin/users/update.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/_admin/users/update.html.php -------------------------------------------------------------------------------- /views/_errors/dependencies.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/_errors/dependencies.html.php -------------------------------------------------------------------------------- /views/_errors/development.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/_errors/development.html.php -------------------------------------------------------------------------------- /views/_errors/production.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/_errors/production.html.php -------------------------------------------------------------------------------- /views/_missing/missing_block_template.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/_missing/missing_block_template.html.php -------------------------------------------------------------------------------- /views/_missing/missing_layout.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/_missing/missing_layout.html.php -------------------------------------------------------------------------------- /views/_missing/missing_template.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/_missing/missing_template.html.php -------------------------------------------------------------------------------- /views/blocks/static/example.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/blocks/static/example.html.php -------------------------------------------------------------------------------- /views/elements/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/elements/example_element.html.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /views/elements/flash_message.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/elements/flash_message.html.php -------------------------------------------------------------------------------- /views/layouts/blank.html.php: -------------------------------------------------------------------------------- 1 | content(); ?> 2 | -------------------------------------------------------------------------------- /views/layouts/default.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/layouts/default.html.php -------------------------------------------------------------------------------- /views/layouts/error.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/layouts/error.html.php -------------------------------------------------------------------------------- /views/layouts/error_development.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/layouts/error_development.html.php -------------------------------------------------------------------------------- /views/layouts/static/default.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/layouts/static/default.html.php -------------------------------------------------------------------------------- /views/pages/index.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/pages/index.html.php -------------------------------------------------------------------------------- /views/pages/read.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/pages/read.html.php -------------------------------------------------------------------------------- /views/pages/static/home.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/pages/static/home.html.php -------------------------------------------------------------------------------- /views/users/login.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/users/login.html.php -------------------------------------------------------------------------------- /views/users/read.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/users/read.html.php -------------------------------------------------------------------------------- /views/users/register.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/views/users/register.html.php -------------------------------------------------------------------------------- /webroot/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/.htaccess -------------------------------------------------------------------------------- /webroot/css/960.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/960.css -------------------------------------------------------------------------------- /webroot/css/content.css: -------------------------------------------------------------------------------- 1 | @import url("minerva.css"); -------------------------------------------------------------------------------- /webroot/css/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/grid.css -------------------------------------------------------------------------------- /webroot/css/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/ie.css -------------------------------------------------------------------------------- /webroot/css/ie6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/ie6.css -------------------------------------------------------------------------------- /webroot/css/jquery/jquery.pnotify.default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/jquery/jquery.pnotify.default.css -------------------------------------------------------------------------------- /webroot/css/jquery/jquery.pnotify.default.icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/jquery/jquery.pnotify.default.icons.css -------------------------------------------------------------------------------- /webroot/css/jquery/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/jquery/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /webroot/css/jquery/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/jquery/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /webroot/css/jquery/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/jquery/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /webroot/css/jquery/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/jquery/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /webroot/css/jquery/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/jquery/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /webroot/css/jquery/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/jquery/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /webroot/css/jquery/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/jquery/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /webroot/css/jquery/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/jquery/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /webroot/css/jquery/themes/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/jquery/themes/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /webroot/css/jquery/themes/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/jquery/themes/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /webroot/css/jquery/themes/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/jquery/themes/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /webroot/css/jquery/themes/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/jquery/themes/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /webroot/css/jquery/themes/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/jquery/themes/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /webroot/css/jquery/themes/smoothness/jquery-ui-1.8.6.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/jquery/themes/smoothness/jquery-ui-1.8.6.custom.css -------------------------------------------------------------------------------- /webroot/css/jquery/tipsy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/jquery/tipsy.css -------------------------------------------------------------------------------- /webroot/css/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/layout.css -------------------------------------------------------------------------------- /webroot/css/minerva.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/minerva.css -------------------------------------------------------------------------------- /webroot/css/minerva_admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/minerva_admin.css -------------------------------------------------------------------------------- /webroot/css/nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/nav.css -------------------------------------------------------------------------------- /webroot/css/plain.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/plain.css -------------------------------------------------------------------------------- /webroot/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/reset.css -------------------------------------------------------------------------------- /webroot/css/second_test.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/second_test.less -------------------------------------------------------------------------------- /webroot/css/test.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/test.less -------------------------------------------------------------------------------- /webroot/css/test.less.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/test.less.css -------------------------------------------------------------------------------- /webroot/css/text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/css/text.css -------------------------------------------------------------------------------- /webroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/favicon.ico -------------------------------------------------------------------------------- /webroot/img/150x150/arnold.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/img/150x150/arnold.jpg -------------------------------------------------------------------------------- /webroot/img/admin-header-bg-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/img/admin-header-bg-red.png -------------------------------------------------------------------------------- /webroot/img/arnold.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/img/arnold.jpg -------------------------------------------------------------------------------- /webroot/img/bullet_toggle_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/img/bullet_toggle_minus.png -------------------------------------------------------------------------------- /webroot/img/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webroot/img/fb-login-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/img/fb-login-button.png -------------------------------------------------------------------------------- /webroot/img/minerva-logo-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/img/minerva-logo-red.png -------------------------------------------------------------------------------- /webroot/img/tipsy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/img/tipsy.gif -------------------------------------------------------------------------------- /webroot/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/index.php -------------------------------------------------------------------------------- /webroot/js/compress-output.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/compress-output.pack.js -------------------------------------------------------------------------------- /webroot/js/empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /webroot/js/jquery-fluid16.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/jquery-fluid16.js -------------------------------------------------------------------------------- /webroot/js/jquery/jquery-1.4.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/jquery/jquery-1.4.4.min.js -------------------------------------------------------------------------------- /webroot/js/jquery/jquery-ui-1.8.6.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/jquery/jquery-ui-1.8.6.custom.min.js -------------------------------------------------------------------------------- /webroot/js/jquery/jquery.pnotify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/jquery/jquery.pnotify.min.js -------------------------------------------------------------------------------- /webroot/js/jquery/jquery.tagger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/jquery/jquery.tagger.js -------------------------------------------------------------------------------- /webroot/js/jquery/jquery.tipsy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/jquery/jquery.tipsy.js -------------------------------------------------------------------------------- /webroot/js/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/test.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/jquery.tinymce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/jquery.tinymce.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/langs/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/langs/en.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/license.txt -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/advhr/css/advhr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/advhr/css/advhr.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/advhr/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/advhr/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/advhr/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/advhr/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/advhr/js/rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/advhr/js/rule.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/advhr/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/advhr/langs/en_dlg.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/advhr/rule.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/advhr/rule.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/advimage/css/advimage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/advimage/css/advimage.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/advimage/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/advimage/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/advimage/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/advimage/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/advimage/image.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/advimage/image.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/advimage/img/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/advimage/img/sample.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/advimage/js/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/advimage/js/image.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/advimage/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/advimage/langs/en_dlg.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/advlink/css/advlink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/advlink/css/advlink.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/advlink/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/advlink/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/advlink/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/advlink/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/advlink/js/advlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/advlink/js/advlink.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/advlink/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/advlink/langs/en_dlg.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/advlink/link.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/advlink/link.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/advlist/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/advlist/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/advlist/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/advlist/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/autoresize/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/autoresize/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/autoresize/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/autoresize/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/autosave/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/autosave/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/autosave/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/autosave/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/autosave/langs/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/autosave/langs/en.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/bbcode/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/bbcode/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/bbcode/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/bbcode/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/contextmenu/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/contextmenu/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/contextmenu/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/contextmenu/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/directionality/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/directionality/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/directionality/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/directionality/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/emotions/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/emotions/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/emotions/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/emotions/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/emotions/emotions.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/emotions/emotions.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/emotions/img/smiley-cool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/emotions/img/smiley-cool.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/emotions/img/smiley-cry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/emotions/img/smiley-cry.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/emotions/img/smiley-embarassed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/emotions/img/smiley-embarassed.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/emotions/img/smiley-frown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/emotions/img/smiley-frown.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/emotions/img/smiley-innocent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/emotions/img/smiley-innocent.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/emotions/img/smiley-kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/emotions/img/smiley-kiss.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/emotions/img/smiley-laughing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/emotions/img/smiley-laughing.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/emotions/img/smiley-sealed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/emotions/img/smiley-sealed.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/emotions/img/smiley-smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/emotions/img/smiley-smile.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/emotions/img/smiley-surprised.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/emotions/img/smiley-surprised.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/emotions/img/smiley-undecided.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/emotions/img/smiley-undecided.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/emotions/img/smiley-wink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/emotions/img/smiley-wink.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/emotions/img/smiley-yell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/emotions/img/smiley-yell.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/emotions/js/emotions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/emotions/js/emotions.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/emotions/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/emotions/langs/en_dlg.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/example/dialog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/example/dialog.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/example/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/example/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/example/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/example/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/example/img/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/example/img/example.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/example/js/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/example/js/dialog.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/example/langs/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/example/langs/en.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/example/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/example/langs/en_dlg.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/fullpage/css/fullpage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/fullpage/css/fullpage.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/fullpage/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/fullpage/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/fullpage/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/fullpage/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/fullpage/fullpage.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/fullpage/fullpage.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/fullpage/js/fullpage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/fullpage/js/fullpage.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/fullpage/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/fullpage/langs/en_dlg.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/fullscreen/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/fullscreen/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/fullscreen/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/fullscreen/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/fullscreen/fullscreen.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/fullscreen/fullscreen.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/iespell/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/iespell/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/iespell/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/iespell/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/inlinepopups/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/inlinepopups/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/inlinepopups/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/inlinepopups/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/inlinepopups/template.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/inlinepopups/template.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/insertdatetime/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/insertdatetime/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/insertdatetime/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/insertdatetime/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/layer/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/layer/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/layer/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/layer/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/legacyoutput/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/legacyoutput/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/legacyoutput/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/legacyoutput/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/media/css/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/media/css/content.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/media/css/media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/media/css/media.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/media/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/media/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/media/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/media/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/media/img/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/media/img/flash.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/media/img/flv_player.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/media/img/flv_player.swf -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/media/img/quicktime.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/media/img/quicktime.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/media/img/realmedia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/media/img/realmedia.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/media/img/shockwave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/media/img/shockwave.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/media/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/media/img/trans.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/media/img/windowsmedia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/media/img/windowsmedia.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/media/js/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/media/js/embed.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/media/js/media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/media/js/media.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/media/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/media/langs/en_dlg.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/media/media.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/media/media.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/nonbreaking/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/nonbreaking/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/nonbreaking/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/nonbreaking/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/noneditable/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/noneditable/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/noneditable/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/noneditable/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/pagebreak/css/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/pagebreak/css/content.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/pagebreak/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/pagebreak/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/pagebreak/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/pagebreak/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/pagebreak/img/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/pagebreak/img/pagebreak.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/pagebreak/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/pagebreak/img/trans.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/paste/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/paste/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/paste/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/paste/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/paste/js/pastetext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/paste/js/pastetext.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/paste/js/pasteword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/paste/js/pasteword.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/paste/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/paste/langs/en_dlg.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/paste/pastetext.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/paste/pastetext.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/paste/pasteword.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/paste/pasteword.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/preview/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/preview/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/preview/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/preview/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/preview/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/preview/example.html -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/preview/jscripts/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/preview/jscripts/embed.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/preview/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/preview/preview.html -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/print/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/print/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/print/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/print/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/save/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/save/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/save/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/save/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/searchreplace/css/searchreplace.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/searchreplace/css/searchreplace.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/searchreplace/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/searchreplace/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/searchreplace/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/searchreplace/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/searchreplace/js/searchreplace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/searchreplace/js/searchreplace.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/searchreplace/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/searchreplace/langs/en_dlg.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/searchreplace/searchreplace.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/searchreplace/searchreplace.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/spellchecker/css/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/spellchecker/css/content.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/spellchecker/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/spellchecker/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/spellchecker/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/spellchecker/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/spellchecker/img/wline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/spellchecker/img/wline.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/style/css/props.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/style/css/props.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/style/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/style/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/style/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/style/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/style/js/props.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/style/js/props.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/style/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/style/langs/en_dlg.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/style/props.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/style/props.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/configs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/configs.php -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/index.php -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/js/fim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/js/fim.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/lang/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/lang/en.php -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/license.txt -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/sb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/sb.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/scripts/add_dir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/scripts/add_dir.php -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/scripts/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/scripts/common.php -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/scripts/delete_dir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/scripts/delete_dir.php -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/scripts/delete_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/scripts/delete_file.php -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/scripts/dir_listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/scripts/dir_listing.php -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/scripts/file_listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/scripts/file_listing.php -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/scripts/format_listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/scripts/format_listing.php -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/scripts/preview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/scripts/preview.php -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/scripts/rename.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/scripts/rename.php -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/scripts/upload_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/scripts/upload_file.php -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/scripts/upload_image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/scripts/upload_image.php -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/cursors/grab.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/cursors/grab.cur -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/cursors/grabbing.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/cursors/grabbing.cur -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/default.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/alert.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/application.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/code.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/content_corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/content_corner.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/content_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/content_side.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/content_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/content_top.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/css.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/db.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/directory.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/doc.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/done.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/error.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/file-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/file-loader.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/file.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/film.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/film.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/flash.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/folder_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/folder_add.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/html.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/info.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/java.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/linux.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/loader.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/music.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/options.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/parent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/parent.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/pdf.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/php.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/picture.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/ppt.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/psd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/psd.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/row_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/row_view.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/ruby.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/script.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/thumb_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/thumb_bg.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/thumb_bg_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/thumb_bg_s.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/thumb_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/thumb_view.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/txt.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/upload_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/upload_file.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/upload_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/upload_image.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/xls.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/swampy_browser_1.2/styles/images/zip.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/tabfocus/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/tabfocus/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/tabfocus/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/tabfocus/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/table/cell.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/table/cell.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/table/css/cell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/table/css/cell.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/table/css/row.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/table/css/row.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/table/css/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/table/css/table.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/table/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/table/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/table/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/table/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/table/js/cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/table/js/cell.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/table/js/merge_cells.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/table/js/merge_cells.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/table/js/row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/table/js/row.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/table/js/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/table/js/table.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/table/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/table/langs/en_dlg.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/table/merge_cells.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/table/merge_cells.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/table/row.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/table/row.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/table/table.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/table/table.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/template/blank.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/template/blank.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/template/css/template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/template/css/template.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/template/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/template/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/template/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/template/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/template/js/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/template/js/template.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/template/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/template/langs/en_dlg.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/template/template.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/template/template.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/visualchars/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/visualchars/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/visualchars/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/visualchars/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/wordcount/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/wordcount/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/wordcount/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/wordcount/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/xhtmlxtras/abbr.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/xhtmlxtras/abbr.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/xhtmlxtras/acronym.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/xhtmlxtras/acronym.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/xhtmlxtras/attributes.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/xhtmlxtras/attributes.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/xhtmlxtras/cite.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/xhtmlxtras/cite.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/xhtmlxtras/css/attributes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/xhtmlxtras/css/attributes.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/xhtmlxtras/css/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/xhtmlxtras/css/popup.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/xhtmlxtras/del.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/xhtmlxtras/del.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/xhtmlxtras/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/xhtmlxtras/editor_plugin.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/xhtmlxtras/ins.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/xhtmlxtras/ins.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/xhtmlxtras/js/abbr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/xhtmlxtras/js/abbr.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/xhtmlxtras/js/acronym.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/xhtmlxtras/js/acronym.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/xhtmlxtras/js/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/xhtmlxtras/js/attributes.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/xhtmlxtras/js/cite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/xhtmlxtras/js/cite.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/xhtmlxtras/js/del.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/xhtmlxtras/js/del.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/xhtmlxtras/js/element_common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/xhtmlxtras/js/element_common.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/xhtmlxtras/js/ins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/xhtmlxtras/js/ins.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/about.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/about.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/anchor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/anchor.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/charmap.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/charmap.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/color_picker.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/color_picker.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/editor_template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/editor_template.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/editor_template_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/editor_template_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/image.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/image.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/img/colorpicker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/img/colorpicker.jpg -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/img/icons.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/js/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/js/about.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/js/anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/js/anchor.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/js/charmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/js/charmap.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/js/color_picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/js/color_picker.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/js/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/js/image.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/js/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/js/link.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/js/source_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/js/source_editor.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/langs/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/langs/en.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/langs/en_dlg.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/link.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/link.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/skins/default/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/skins/default/content.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/skins/default/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/skins/default/dialog.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/skins/default/img/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/skins/default/img/buttons.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/skins/default/img/items.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/skins/default/img/items.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/skins/default/img/menu_check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/skins/default/img/menu_check.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/skins/default/img/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/skins/default/img/progress.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/skins/default/img/tabs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/skins/default/img/tabs.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/skins/default/ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/skins/default/ui.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/skins/o2k7/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/skins/o2k7/content.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/skins/o2k7/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/skins/o2k7/dialog.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/skins/o2k7/ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/skins/o2k7/ui.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/skins/o2k7/ui_black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/skins/o2k7/ui_black.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/advanced/source_editor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/advanced/source_editor.htm -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/simple/editor_template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/simple/editor_template.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/simple/editor_template_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/simple/editor_template_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/simple/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/simple/img/icons.gif -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/simple/langs/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/simple/langs/en.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/simple/skins/default/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/simple/skins/default/content.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/simple/skins/default/ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/simple/skins/default/ui.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/simple/skins/o2k7/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/simple/skins/o2k7/content.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png -------------------------------------------------------------------------------- /webroot/js/tiny_mce/themes/simple/skins/o2k7/ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/themes/simple/skins/o2k7/ui.css -------------------------------------------------------------------------------- /webroot/js/tiny_mce/tiny_mce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/tiny_mce.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/tiny_mce_popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/tiny_mce_popup.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/tiny_mce_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/tiny_mce_src.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/utils/editable_selects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/utils/editable_selects.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/utils/form_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/utils/form_utils.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/utils/mctabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/utils/mctabs.js -------------------------------------------------------------------------------- /webroot/js/tiny_mce/utils/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/js/tiny_mce/utils/validate.js -------------------------------------------------------------------------------- /webroot/xdebug_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/minerva/HEAD/webroot/xdebug_test.php --------------------------------------------------------------------------------