This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: TOKYO MX | |
| type: GR | |
| channel: '16' | |
| - name: tvk | |
| type: GR | |
| channel: '18' | |
| - name: フジテレビ | |
| type: GR | |
| channel: '21' | |
| - name: TBS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @import 'mastodon/mixins'; | |
| @import 'mastodon/variables_cure'; | |
| @import 'fonts/roboto'; | |
| @import 'fonts/roboto-mono'; | |
| @import 'fonts/montserrat'; | |
| @import 'mastodon/reset'; | |
| @import 'mastodon/basics'; | |
| @import 'mastodon/containers'; | |
| @import 'mastodon/lists'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Dim logfiles | |
| Dim ChapterText | |
| Dim ChapCnt | |
| Dim logTrim | |
| Dim ChapBuf | |
| Dim ChapBufAf | |
| Dim ChapSa | |
| Dim ChapTime |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # app/controllers/api/v1/search_controller.rb | |
| RESULTS_LIMIT = 50 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // app/javascript/mastodon/reducers/settings.js | |
| const defaultColumns = fromJS([ | |
| { id: 'COMPOSE', uuid: uuid(), params: {} }, | |
| { id: 'COMMUNITY', uuid: uuid(), params: {} }, | |
| { id: 'NOTIFICATIONS', uuid: uuid(), params: {} }, | |
| { id: 'HOME', uuid: uuid(), params: {} }, | |
| ]); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # lib/paperclip/img_converter.rb | |
| # こちらのインスタンスより・・ https://github.com/imas/mastodon/blob/imastodon/lib/paperclip/img_converter.rb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Dim logfiles | |
| Dim ChapterText | |
| Dim ChapCnt | |
| Dim logTrim | |
| Dim ChapBuf | |
| Dim ChapBufAf | |
| Dim ChapSa | |
| Dim ChapTime |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .status-unlisted .status__avatar::after{ | |
| font-family: 'FontAwesome'; | |
| content: "\F09C"; | |
| position: relative; | |
| top: 8px; | |
| left: 0px; | |
| font-size: 15px; | |
| } | |
| .status-private .status__avatar::after{ | |
| font-family: 'FontAwesome'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // app/javascript/styles/mastodon/components.scss | |
| //726行目 | |
| .status__content.status__content--collapsed { | |
| max-height: 20px * 10; // 10 lines | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class SearchService < BaseService | |
| attr_accessor :query, :account, :limit, :resolve | |
| def call(query, limit, resolve = false, account = nil) | |
| @query = query.strip | |
| @account = account | |
| @limit = limit | |
| @resolve = resolve | |
| default_results.tap do |results| |
OlderNewer