├── .gitignore ├── LICENSE ├── README.md ├── app ├── assets │ ├── javascripts │ │ ├── application.js │ │ ├── comment.js │ │ ├── compat.jquery.js │ │ ├── cookie-defaults.js │ │ ├── cookie.js │ │ ├── dmail.js │ │ ├── favorite.js │ │ ├── forum.js │ │ ├── i18n │ │ │ └── translations.js │ │ ├── i18n_scopify.js │ │ ├── init.autocomplete.js.php │ │ ├── init.cookie.js │ │ ├── init.menu.js │ │ ├── init.menu_drag_drop.js │ │ ├── init.news.js │ │ ├── init.post_edit.js │ │ ├── jquery.js │ │ ├── jquery.ui.autocomplete.js │ │ ├── jquery_ujs.js │ │ ├── menu.js │ │ ├── menu_drag_drop.js │ │ ├── moebooru.js │ │ ├── post.js │ │ ├── prefix.js.php │ │ ├── user_record.js │ │ └── vote.js │ └── stylesheets │ │ ├── application.css │ │ ├── autocomplete.css │ │ ├── layouts │ │ └── settings.css.scss │ │ ├── menu.css │ │ ├── my_imouto.css.scss │ │ ├── pool.css │ │ └── profiler.css ├── controllers │ ├── AdminController.php │ ├── AdvertisementsController.php │ ├── ApplicationController.php │ ├── ArtistController.php │ ├── BannedController.php │ ├── BatchController.php │ ├── BlocksController.php │ ├── CommentController.php │ ├── DmailController.php │ ├── ExceptionController.php │ ├── ForumController.php │ ├── HelpController.php │ ├── HistoryController.php │ ├── InlineController.php │ ├── JobTaskController.php │ ├── NoteController.php │ ├── PoolController.php │ ├── PostController.php │ ├── StaticController.php │ ├── TagAliasController.php │ ├── TagController.php │ ├── TagImplicationController.php │ ├── TagSubscriptionController.php │ ├── UserController.php │ ├── UserRecordController.php │ └── WikiController.php ├── helpers │ ├── AdvertisementsHelper.php │ ├── ApplicationHelper.php │ ├── AvatarHelper.php │ ├── FavoriteHelper.php │ ├── HistoryHelper.php │ ├── InlineHelper.php │ ├── PoolHelper.php │ ├── PostHelper.php │ ├── StaticHelper.php │ ├── TagHelper.php │ ├── TagSubscriptionHelper.php │ └── WikiHelper.php ├── mailers │ ├── DMailer.php │ └── UserMailer.php ├── models │ ├── Advertisement.php │ ├── Artist.php │ ├── ArtistUrl.php │ ├── Ban.php │ ├── BatchUpload.php │ ├── Comment.php │ ├── Dmail.php │ ├── Favorite.php │ ├── FlaggedPostDetail.php │ ├── ForumPost.php │ ├── History.php │ ├── HistoryChange.php │ ├── Inline.php │ ├── InlineImage.php │ ├── IpBans.php │ ├── JobTask.php │ ├── Note.php │ ├── NoteVersion.php │ ├── Pool.php │ ├── PoolPost.php │ ├── Post.php │ ├── Post │ │ ├── ApiMethods.php │ │ ├── CacheMethods.php │ │ ├── ChangeSequenceMethods.php │ │ ├── CommentMethods.php │ │ ├── CountMethods.php │ │ ├── FileMethods.php │ │ ├── FrameMethods.php │ │ ├── ImageStore │ │ │ ├── Base.php │ │ │ ├── LocalFlat.php │ │ │ └── LocalHierarchy.php │ │ ├── ImageStoreMethods.php │ │ ├── MirrorMethods.php │ │ ├── ParentMethods.php │ │ ├── RatingMethods.php │ │ ├── SqlMethods.php │ │ ├── StatusMethods.php │ │ ├── TagMethods.php │ │ └── VoteMethods.php │ ├── PostTagHistory.php │ ├── PostVote.php │ ├── Tag.php │ ├── Tag │ │ ├── ApiMethods.php │ │ ├── CacheMethods.php │ │ └── TypeMethods.php │ ├── TagAlias.php │ ├── TagImplication.php │ ├── TagSubscription.php │ ├── User.php │ ├── UserBlacklistedTag.php │ ├── UserLog.php │ ├── UserRecord.php │ ├── WikiPage.php │ └── WikiPageVersion.php └── views │ ├── admin │ ├── edit_user.php │ ├── index.php │ └── reset_password.php │ ├── advertisements │ ├── _form.php │ ├── blank.php │ ├── edit.php │ ├── index.php │ └── show.php │ ├── artist │ ├── _footer.php │ ├── create.php │ ├── destroy.php │ ├── index.php │ └── update.php │ ├── banned │ └── index.php │ ├── batch │ ├── create.php │ └── index.php │ ├── comment │ ├── _comment.php │ ├── _comments.php │ ├── _footer.php │ ├── edit.php │ ├── index.php │ ├── moderate.php │ ├── search.php │ └── show.php │ ├── dmail │ ├── _compose.php │ ├── _footer.php │ ├── _message.php │ ├── compose.php │ ├── confirm_mark_all_read.php │ ├── inbox.php │ ├── preview.php │ ├── show.php │ └── show_previous_messages.php │ ├── exception │ ├── 404.php │ └── 500.php │ ├── forum │ ├── _post.php │ ├── blank.php │ ├── edit.php │ ├── index.php │ ├── search.php │ └── show.php │ ├── help │ ├── about.php │ ├── api.php │ ├── artists.php │ ├── bookmarklet.php │ ├── cheatsheet.php │ ├── comments.php │ ├── dtext.php │ ├── extension.php │ ├── faq.php │ ├── favorites.php │ ├── forum.php │ ├── image_sampling.php │ ├── index.php │ ├── irc.php │ ├── mass_tag_edit.php │ ├── notes.php │ ├── pools.php │ ├── post_relationships.php │ ├── posts.php │ ├── ratings.php │ ├── source_code.php │ ├── start.php │ ├── tag_aliases.php │ ├── tag_implications.php │ ├── tag_scripts.php │ ├── tags.php │ ├── trac.php │ ├── users.php │ ├── voting.php │ └── wiki.php │ ├── history │ └── index.php │ ├── inline │ ├── _footer.php │ ├── crop.php │ ├── edit.php │ └── index.php │ ├── job_task │ ├── index.php │ ├── restart.php │ └── show.php │ ├── layouts │ ├── _ga.php │ ├── _locale.php │ ├── _login.php │ ├── _menu.php │ ├── _news.php │ ├── _notice.php │ ├── admin.php │ ├── application.php │ ├── bare.php │ ├── default.php │ ├── empty.php │ └── settings.php │ ├── note │ ├── _footer.php │ ├── _note.php │ ├── history.php │ ├── index.php │ └── search.php │ ├── pool │ ├── _footer.php │ ├── _import_list.php │ ├── _pool_atom.php │ ├── _select_form.php │ ├── add_post.php │ ├── copy.php │ ├── create.php │ ├── destroy.php │ ├── import.js.php │ ├── index.atom.builder.php │ ├── index.php │ ├── order.php │ ├── select.php │ ├── show.php │ ├── transfer_metadata.php │ └── update.php │ ├── post │ ├── _blacklists.php │ ├── _footer.php │ ├── _horizontal.php │ ├── _hover.php │ ├── _posts.php │ ├── _preload.php │ ├── _search.php │ ├── _social_meta.php │ ├── _tag_script.php │ ├── _tags.php │ ├── _vertical.php │ ├── atom.php │ ├── browse.php │ ├── delete.php │ ├── deleted_index.php │ ├── error.php │ ├── favorites.php │ ├── import.php │ ├── index.php │ ├── index.xml.php │ ├── moderate.php │ ├── piclens.php │ ├── popular_by_day.php │ ├── popular_by_month.php │ ├── popular_by_week.php │ ├── popular_recent.php │ ├── search_external_data.php │ ├── show.php │ ├── show_empty.php │ ├── show_partials │ │ ├── _comments.php │ │ ├── _edit.php │ │ ├── _history_panel.php │ │ ├── _image.php │ │ ├── _image_footer.php │ │ ├── _options_panel.php │ │ ├── _pool.php │ │ ├── _related_posts_panel.php │ │ ├── _statistics_panel.php │ │ └── _status_notices.php │ ├── similar.php │ └── upload.php │ ├── shared │ └── _error_messages.php │ ├── static │ ├── index.php │ ├── more.php │ └── terms_of_service.php │ ├── tag │ ├── _alpha_paginator.php │ ├── _footer.php │ ├── cloud.php │ ├── edit.php │ ├── edit_preview.php │ ├── index.php │ ├── mass_edit.php │ ├── popular_by_day.php │ ├── popular_by_month.php │ └── popular_by_week.php │ ├── tag_alias │ └── index.php │ ├── tag_implication │ └── index.php │ ├── tag_subscription │ ├── _listing.php │ ├── _listing_row.php │ ├── _user_listing.php │ ├── create.js.php │ ├── destroy.js.php │ └── index.php │ ├── user │ ├── _footer.php │ ├── block.php │ ├── change_email.php │ ├── change_password.php │ ├── edit.php │ ├── home.php │ ├── index.php │ ├── invites.php │ ├── login.php │ ├── logout.php │ ├── resend_confirmation.php │ ├── reset_password.php │ ├── set_avatar.php │ ├── show.php │ ├── show_blocked_users.php │ └── signup.php │ ├── user_mailer │ ├── new_password.php │ └── new_password.text.php │ ├── user_record │ ├── _footer.php │ ├── create.php │ ├── destroy.php │ └── index.php │ └── wiki │ ├── _edit_buttons.php │ ├── _footer.php │ ├── _recently_revised.php │ ├── _sidebar.php │ ├── add.php │ ├── diff.php │ ├── edit.php │ ├── history.php │ ├── index.php │ ├── recent_changes.php │ ├── rename.php │ └── show.php ├── composer.json ├── composer.lock ├── config ├── application.php ├── boot.php ├── config.php.example ├── database.yml.example ├── default_config.php ├── environments │ ├── development.php │ └── production.php ├── initializers │ └── will_paginate.php ├── locales │ ├── de.yml │ ├── en-extra.yml │ ├── en.yml │ ├── es-extra.yml │ ├── es.yml │ ├── ja.yml │ ├── my-imouto.yml │ ├── ru.yml │ ├── zh_CN-extra.yml │ └── zh_CN.yml └── routes.php ├── db ├── migrate │ ├── 20131118024736_create_advertisements.php │ ├── 20131118173429_add_ip_addr_to_dmails.php │ ├── 20131118173629_add_ip_addr_to_forum_posts.php │ ├── 20131118173949_add_updater_ip_addr_to_comments.php │ ├── 20131201031201_add_html_to_advertisements.php │ ├── 20131205153422_add_position_to_ads.php │ ├── 20131231072227_create_inline_images.php │ ├── 20140112113211_insert_tag_sub_job_task.php │ ├── 20140112120043_add_user_id_fk_to_tag_subs.php │ ├── 20140112125639_change_tag_subs_charset.php │ ├── 20140126192028_create_user_log.php │ ├── 20140220140215_change_tag_subs_tag_query_charset.php │ └── 20160730084704_change_ip_addr_length.php ├── schema.sql ├── seeds.php └── table_schema │ └── production │ ├── advertisements.php │ ├── artists.php │ ├── artists_urls.php │ ├── bans.php │ ├── batch_uploads.php │ ├── comments.php │ ├── dmails.php │ ├── favorites.php │ ├── flagged_post_details.php │ ├── forum_posts.php │ ├── histories.php │ ├── history_changes.php │ ├── inline_images.php │ ├── inlines.php │ ├── ip_bans.php │ ├── job_tasks.php │ ├── note_versions.php │ ├── notes.php │ ├── pools.php │ ├── pools_posts.php │ ├── post_tag_histories.php │ ├── post_votes.php │ ├── posts.php │ ├── posts_tags.php │ ├── schema_migrations.php │ ├── table_data.php │ ├── tag_aliases.php │ ├── tag_implications.php │ ├── tag_subscriptions.php │ ├── tags.php │ ├── user_blacklisted_tags.php │ ├── user_logs.php │ ├── user_records.php │ ├── users.php │ ├── wiki_page_versions.php │ └── wiki_pages.php ├── install.php ├── lib ├── DText.php ├── Danbooru.php ├── Danbooru │ └── Exception │ │ ├── ExceptionInterface.php │ │ └── RuntimeException.php ├── ExternalPost.php ├── ExtractUrls.php ├── Moebooru │ ├── CacheHelper.php │ ├── Diff.php │ ├── Exception │ │ ├── ExceptionInterface.php │ │ └── ResizeErrorException.php │ ├── Resizer.php │ ├── TempfilePrefix.php │ └── Versioning │ │ ├── Versioning.php │ │ └── VersioningTrait.php ├── SimilarImages.php ├── assets │ ├── javascripts │ │ ├── jquery.cookie.js │ │ ├── jquery.min.map │ │ ├── moe-legacy │ │ │ ├── application.js │ │ │ ├── browser-img-pool.js │ │ │ ├── browser-post-loading.js │ │ │ ├── browser-thumb-view.js │ │ │ ├── browser-view.js │ │ │ ├── common.js │ │ │ ├── cropper.js │ │ │ ├── debug-window.js │ │ │ ├── history.js │ │ │ ├── inline_image.js │ │ │ ├── notes.js │ │ │ ├── pool.js │ │ │ ├── post-frame-editor.js │ │ │ ├── post-upload-form.js │ │ │ ├── post.js │ │ │ ├── post_mode_menu.js │ │ │ ├── post_tag_history.js │ │ │ ├── preload.js │ │ │ ├── referral.js │ │ │ ├── related_tags.js │ │ │ ├── similar-thumbnailing.js │ │ │ ├── tag_completion.js │ │ │ ├── touchscreen-web-app-helpers.js │ │ │ ├── url-hash.js │ │ │ ├── user.js │ │ │ └── vote-widget.js │ │ ├── mousetrap.js │ │ └── prototype │ │ │ ├── builder.js │ │ │ ├── controls.js │ │ │ ├── dragdrop.js │ │ │ ├── effects.js │ │ │ ├── prototype.js │ │ │ ├── scriptaculous.js │ │ │ ├── slider.js │ │ │ ├── sound.js │ │ │ └── unittest.js │ └── stylesheets │ │ ├── jquery.ui.all.css │ │ └── webtoolkit.clearfix.css └── functions.php ├── log └── .gitignore ├── public ├── .htaccess ├── 404.html ├── 500.html ├── IE8.js ├── assets │ ├── application-0b1f0761b0f488c409a80b516518e0e1.css │ ├── application-0b1f0761b0f488c409a80b516518e0e1.css.gz │ ├── application-bc73ca384fb75ba1c8d9ef550136a4bf.js │ ├── application-bc73ca384fb75ba1c8d9ef550136a4bf.js.gz │ ├── application.css │ ├── application.css.gz │ ├── application.js │ ├── application.js.gz │ ├── manifest.yml │ └── moe-legacy │ │ ├── application-51bfe7807503505997eccce2d6d89551.js │ │ ├── application-51bfe7807503505997eccce2d6d89551.js.gz │ │ ├── application.js │ │ └── application.js.gz ├── blacklisted-preview.png ├── deleted-preview.png ├── download-preview.png ├── favicon-danbooru.donmai.us.ico ├── favicon-gelbooru.com.png ├── favicon-konachan.com.ico ├── favicon-yande.re.ico ├── favicon.ico ├── images │ ├── 0.gif │ ├── 1.gif │ ├── 2.gif │ ├── 3.gif │ ├── 4.gif │ ├── 404.jpg │ ├── 5.gif │ ├── 500.jpg │ ├── 6.gif │ ├── 7.gif │ ├── 8.gif │ ├── 9.gif │ ├── activity.gif │ ├── blacklisted-preview.png │ ├── blank.gif │ ├── blank.png │ ├── ddl.gif │ ├── ddl_large.gif │ ├── down.jpg │ ├── errors.png │ ├── icon-delete.png │ ├── icon-flag.png │ ├── icon-zoom-in.png │ ├── icon-zoom-none.png │ ├── icon-zoom-out.png │ ├── iphone-icon.png │ ├── iphone-startup-ipad.png │ ├── iphone-startup.png │ ├── konachan │ │ ├── 0.gif │ │ ├── 1.gif │ │ ├── 2.gif │ │ ├── 3.gif │ │ ├── 4.gif │ │ ├── 5.gif │ │ ├── 6.gif │ │ ├── 7.gif │ │ ├── 8.gif │ │ └── 9.gif │ ├── login-background.png │ ├── logo.png │ ├── logo_small.png │ ├── nl.png │ ├── post-star-child.gif │ ├── post-star-flagged.gif │ ├── post-star-parent.gif │ └── post-star-pending.gif ├── index.php ├── marqueeHoriz.gif └── marqueeVert.gif ├── script └── daemons │ └── job_task_processor.php ├── tmp └── .gitignore └── vendor ├── Horde └── Text │ ├── Diff.php │ └── Diff │ ├── Engine │ ├── Native.php │ ├── Shell.php │ ├── String.php │ └── Xdiff.php │ ├── Exception.php │ ├── Mapped.php │ ├── Op │ ├── Add.php │ ├── Base.php │ ├── Change.php │ ├── Copy.php │ └── Delete.php │ ├── Renderer.php │ ├── Renderer │ ├── Context.php │ ├── Inline.php │ └── Unified.php │ ├── ThreeWay.php │ └── ThreeWay │ ├── BlockBuilder.php │ └── Op │ ├── Base.php │ └── Copy.php ├── ZipStream.php ├── assets └── javascripts │ ├── i18n.js │ └── jquery.js └── htmLawed ├── htmLawed.php └── htmLawed_README.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/README.md -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/javascripts/comment.js -------------------------------------------------------------------------------- /app/assets/javascripts/compat.jquery.js: -------------------------------------------------------------------------------- 1 | jQuery.noConflict(); 2 | -------------------------------------------------------------------------------- /app/assets/javascripts/cookie-defaults.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | $.cookie.defaults['path'] = PREFIX; 3 | }) (jQuery); 4 | -------------------------------------------------------------------------------- /app/assets/javascripts/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/javascripts/cookie.js -------------------------------------------------------------------------------- /app/assets/javascripts/dmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/javascripts/dmail.js -------------------------------------------------------------------------------- /app/assets/javascripts/favorite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/javascripts/favorite.js -------------------------------------------------------------------------------- /app/assets/javascripts/forum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/javascripts/forum.js -------------------------------------------------------------------------------- /app/assets/javascripts/i18n/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/javascripts/i18n/translations.js -------------------------------------------------------------------------------- /app/assets/javascripts/i18n_scopify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/javascripts/i18n_scopify.js -------------------------------------------------------------------------------- /app/assets/javascripts/init.autocomplete.js.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/javascripts/init.autocomplete.js.php -------------------------------------------------------------------------------- /app/assets/javascripts/init.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/javascripts/init.cookie.js -------------------------------------------------------------------------------- /app/assets/javascripts/init.menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/javascripts/init.menu.js -------------------------------------------------------------------------------- /app/assets/javascripts/init.menu_drag_drop.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function($) { 2 | MenuDragDrop.init(); 3 | }); 4 | -------------------------------------------------------------------------------- /app/assets/javascripts/init.news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/javascripts/init.news.js -------------------------------------------------------------------------------- /app/assets/javascripts/init.post_edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/javascripts/init.post_edit.js -------------------------------------------------------------------------------- /app/assets/javascripts/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/javascripts/jquery.js -------------------------------------------------------------------------------- /app/assets/javascripts/jquery.ui.autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/javascripts/jquery.ui.autocomplete.js -------------------------------------------------------------------------------- /app/assets/javascripts/jquery_ujs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/javascripts/jquery_ujs.js -------------------------------------------------------------------------------- /app/assets/javascripts/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/javascripts/menu.js -------------------------------------------------------------------------------- /app/assets/javascripts/menu_drag_drop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/javascripts/menu_drag_drop.js -------------------------------------------------------------------------------- /app/assets/javascripts/moebooru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/javascripts/moebooru.js -------------------------------------------------------------------------------- /app/assets/javascripts/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/javascripts/post.js -------------------------------------------------------------------------------- /app/assets/javascripts/prefix.js.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/javascripts/prefix.js.php -------------------------------------------------------------------------------- /app/assets/javascripts/user_record.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/javascripts/user_record.js -------------------------------------------------------------------------------- /app/assets/javascripts/vote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/javascripts/vote.js -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/stylesheets/autocomplete.css -------------------------------------------------------------------------------- /app/assets/stylesheets/layouts/settings.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/stylesheets/layouts/settings.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/stylesheets/menu.css -------------------------------------------------------------------------------- /app/assets/stylesheets/my_imouto.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/assets/stylesheets/my_imouto.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pool.css: -------------------------------------------------------------------------------- 1 | div#pool-show div ul li.mode-browse { 2 | float: none !important; 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/profiler.css: -------------------------------------------------------------------------------- 1 | body .profiler-results * { 2 | color: black; 3 | } 4 | -------------------------------------------------------------------------------- /app/controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/controllers/AdminController.php -------------------------------------------------------------------------------- /app/controllers/AdvertisementsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/controllers/AdvertisementsController.php -------------------------------------------------------------------------------- /app/controllers/ApplicationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/controllers/ApplicationController.php -------------------------------------------------------------------------------- /app/controllers/ArtistController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/controllers/ArtistController.php -------------------------------------------------------------------------------- /app/controllers/BannedController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/controllers/BannedController.php -------------------------------------------------------------------------------- /app/controllers/BatchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/controllers/BatchController.php -------------------------------------------------------------------------------- /app/controllers/BlocksController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/controllers/BlocksController.php -------------------------------------------------------------------------------- /app/controllers/CommentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/controllers/CommentController.php -------------------------------------------------------------------------------- /app/controllers/DmailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/controllers/DmailController.php -------------------------------------------------------------------------------- /app/controllers/ExceptionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/controllers/ExceptionController.php -------------------------------------------------------------------------------- /app/controllers/ForumController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/controllers/ForumController.php -------------------------------------------------------------------------------- /app/controllers/HelpController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/controllers/HelpController.php -------------------------------------------------------------------------------- /app/controllers/HistoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/controllers/HistoryController.php -------------------------------------------------------------------------------- /app/controllers/InlineController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/controllers/InlineController.php -------------------------------------------------------------------------------- /app/controllers/JobTaskController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/controllers/JobTaskController.php -------------------------------------------------------------------------------- /app/controllers/NoteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/controllers/NoteController.php -------------------------------------------------------------------------------- /app/controllers/PoolController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/controllers/PoolController.php -------------------------------------------------------------------------------- /app/controllers/PostController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/controllers/PostController.php -------------------------------------------------------------------------------- /app/controllers/StaticController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/controllers/StaticController.php -------------------------------------------------------------------------------- /app/controllers/TagAliasController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/controllers/TagAliasController.php -------------------------------------------------------------------------------- /app/controllers/TagController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/controllers/TagController.php -------------------------------------------------------------------------------- /app/controllers/TagImplicationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/controllers/TagImplicationController.php -------------------------------------------------------------------------------- /app/controllers/TagSubscriptionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/controllers/TagSubscriptionController.php -------------------------------------------------------------------------------- /app/controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/controllers/UserController.php -------------------------------------------------------------------------------- /app/controllers/UserRecordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/controllers/UserRecordController.php -------------------------------------------------------------------------------- /app/controllers/WikiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/controllers/WikiController.php -------------------------------------------------------------------------------- /app/helpers/AdvertisementsHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/helpers/AdvertisementsHelper.php -------------------------------------------------------------------------------- /app/helpers/ApplicationHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/helpers/ApplicationHelper.php -------------------------------------------------------------------------------- /app/helpers/AvatarHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/helpers/AvatarHelper.php -------------------------------------------------------------------------------- /app/helpers/FavoriteHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/helpers/FavoriteHelper.php -------------------------------------------------------------------------------- /app/helpers/HistoryHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/helpers/HistoryHelper.php -------------------------------------------------------------------------------- /app/helpers/InlineHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/helpers/InlineHelper.php -------------------------------------------------------------------------------- /app/helpers/PoolHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/helpers/PoolHelper.php -------------------------------------------------------------------------------- /app/helpers/PostHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/helpers/PostHelper.php -------------------------------------------------------------------------------- /app/helpers/StaticHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/helpers/StaticHelper.php -------------------------------------------------------------------------------- /app/helpers/TagHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/helpers/TagHelper.php -------------------------------------------------------------------------------- /app/helpers/TagSubscriptionHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/helpers/TagSubscriptionHelper.php -------------------------------------------------------------------------------- /app/helpers/WikiHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/helpers/WikiHelper.php -------------------------------------------------------------------------------- /app/mailers/DMailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/mailers/DMailer.php -------------------------------------------------------------------------------- /app/mailers/UserMailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/mailers/UserMailer.php -------------------------------------------------------------------------------- /app/models/Advertisement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/models/Advertisement.php -------------------------------------------------------------------------------- /app/models/Artist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/models/Artist.php -------------------------------------------------------------------------------- /app/models/ArtistUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/models/ArtistUrl.php -------------------------------------------------------------------------------- /app/models/Ban.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/models/Ban.php -------------------------------------------------------------------------------- /app/models/BatchUpload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/models/BatchUpload.php -------------------------------------------------------------------------------- /app/models/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/models/Comment.php -------------------------------------------------------------------------------- /app/models/Dmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yushe/myimouto-plus/HEAD/app/models/Dmail.php -------------------------------------------------------------------------------- /app/models/Favorite.php: -------------------------------------------------------------------------------- 1 |