forked from wallabag/wallabag
Rename wallabag_core to wallabag
This commit is contained in:
@ -17,11 +17,11 @@ services:
|
||||
$defaultLocale: '%kernel.default_locale%'
|
||||
$wallabagUrl: '%domain_name%'
|
||||
$tablePrefix: "%database_table_prefix%"
|
||||
$encryptionKeyPath: "%wallabag_core.site_credentials.encryption_key_path%"
|
||||
$fetchingErrorMessageTitle: "%wallabag_core.fetching_error_message_title%"
|
||||
$fetchingErrorMessage: '%wallabag_core.fetching_error_message%'
|
||||
$languages: '%wallabag_core.languages%'
|
||||
$lifeTime: '%wallabag_core.cache_lifetime%'
|
||||
$encryptionKeyPath: "%wallabag.site_credentials.encryption_key_path%"
|
||||
$fetchingErrorMessageTitle: "%wallabag.fetching_error_message_title%"
|
||||
$fetchingErrorMessage: '%wallabag.fetching_error_message%'
|
||||
$languages: '%wallabag.languages%'
|
||||
$lifeTime: '%wallabag.cache_lifetime%'
|
||||
$cookieFile: "%kernel.cache_dir%/cookiejar.json"
|
||||
$logoPath: 'web/img/appicon/apple-touch-icon-152.png'
|
||||
$registrationEnabled: '%fosuser_registration%'
|
||||
@ -30,7 +30,7 @@ services:
|
||||
$senderName: "%scheb_two_factor.email.sender_name%"
|
||||
$storeArticleHeaders: '@=service(''craue_config'').get(''store_article_headers'')'
|
||||
$supportUrl: '@=service(''craue_config'').get(''wallabag_support_url'')'
|
||||
$fonts: '%wallabag_core.fonts%'
|
||||
$fonts: '%wallabag.fonts%'
|
||||
|
||||
Wallabag\:
|
||||
resource: '../../src/*'
|
||||
@ -46,62 +46,62 @@ services:
|
||||
Wallabag\Controller\Import\ChromeController:
|
||||
arguments:
|
||||
$rabbitMqProducer: '@old_sound_rabbit_mq.import_chrome_producer'
|
||||
$redisProducer: '@wallabag_core.producer.redis.chrome'
|
||||
$redisProducer: '@wallabag.producer.redis.chrome'
|
||||
|
||||
Wallabag\Controller\Import\DeliciousController:
|
||||
arguments:
|
||||
$rabbitMqProducer: '@old_sound_rabbit_mq.import_delicious_producer'
|
||||
$redisProducer: '@wallabag_core.producer.redis.delicious'
|
||||
$redisProducer: '@wallabag.producer.redis.delicious'
|
||||
|
||||
Wallabag\Controller\Import\ElcuratorController:
|
||||
arguments:
|
||||
$rabbitMqProducer: '@old_sound_rabbit_mq.import_elcurator_producer'
|
||||
$redisProducer: '@wallabag_core.producer.redis.elcurator'
|
||||
$redisProducer: '@wallabag.producer.redis.elcurator'
|
||||
|
||||
Wallabag\Controller\Import\FirefoxController:
|
||||
arguments:
|
||||
$rabbitMqProducer: '@old_sound_rabbit_mq.import_firefox_producer'
|
||||
$redisProducer: '@wallabag_core.producer.redis.firefox'
|
||||
$redisProducer: '@wallabag.producer.redis.firefox'
|
||||
|
||||
Wallabag\Controller\Import\InstapaperController:
|
||||
arguments:
|
||||
$rabbitMqProducer: '@old_sound_rabbit_mq.import_instapaper_producer'
|
||||
$redisProducer: '@wallabag_core.producer.redis.instapaper'
|
||||
$redisProducer: '@wallabag.producer.redis.instapaper'
|
||||
|
||||
Wallabag\Controller\Import\PinboardController:
|
||||
arguments:
|
||||
$rabbitMqProducer: '@old_sound_rabbit_mq.import_pinboard_producer'
|
||||
$redisProducer: '@wallabag_core.producer.redis.pinboard'
|
||||
$redisProducer: '@wallabag.producer.redis.pinboard'
|
||||
|
||||
Wallabag\Controller\Import\PocketController:
|
||||
arguments:
|
||||
$rabbitMqProducer: '@old_sound_rabbit_mq.import_pocket_producer'
|
||||
$redisProducer: '@wallabag_core.producer.redis.pocket'
|
||||
$redisProducer: '@wallabag.producer.redis.pocket'
|
||||
|
||||
Wallabag\Controller\Import\ReadabilityController:
|
||||
arguments:
|
||||
$rabbitMqProducer: '@old_sound_rabbit_mq.import_readability_producer'
|
||||
$redisProducer: '@wallabag_core.producer.redis.readability'
|
||||
$redisProducer: '@wallabag.producer.redis.readability'
|
||||
|
||||
Wallabag\Controller\Import\WallabagV1Controller:
|
||||
arguments:
|
||||
$rabbitMqProducer: '@old_sound_rabbit_mq.import_wallabag_v1_producer'
|
||||
$redisProducer: '@wallabag_core.producer.redis.wallabag_v1'
|
||||
$redisProducer: '@wallabag.producer.redis.wallabag_v1'
|
||||
|
||||
Wallabag\Controller\Import\WallabagV2Controller:
|
||||
arguments:
|
||||
$rabbitMqProducer: '@old_sound_rabbit_mq.import_wallabag_v2_producer'
|
||||
$redisProducer: '@wallabag_core.producer.redis.wallabag_v2'
|
||||
$redisProducer: '@wallabag.producer.redis.wallabag_v2'
|
||||
|
||||
Wallabag\Controller\Import\ShaarliController:
|
||||
arguments:
|
||||
$rabbitMqProducer: '@old_sound_rabbit_mq.import_shaarli_producer'
|
||||
$redisProducer: '@wallabag_core.producer.redis.shaarli'
|
||||
$redisProducer: '@wallabag.producer.redis.shaarli'
|
||||
|
||||
Wallabag\Controller\Import\PocketHtmlController:
|
||||
arguments:
|
||||
$rabbitMqProducer: '@old_sound_rabbit_mq.import_pocket_html_producer'
|
||||
$redisProducer: '@wallabag_core.producer.redis.pocket_html'
|
||||
$redisProducer: '@wallabag.producer.redis.pocket_html'
|
||||
|
||||
Doctrine\DBAL\Connection:
|
||||
alias: doctrine.dbal.default_connection
|
||||
@ -177,8 +177,8 @@ services:
|
||||
Graby\Graby:
|
||||
arguments:
|
||||
$config:
|
||||
error_message: '%wallabag_core.fetching_error_message%'
|
||||
error_message_title: '%wallabag_core.fetching_error_message_title%'
|
||||
error_message: '%wallabag.fetching_error_message%'
|
||||
error_message_title: '%wallabag.fetching_error_message_title%'
|
||||
calls:
|
||||
- [ setLogger, [ "@logger" ] ]
|
||||
tags:
|
||||
@ -188,8 +188,8 @@ services:
|
||||
arguments:
|
||||
$config: {}
|
||||
|
||||
wallabag_core.http_client:
|
||||
alias: 'httplug.client.wallabag_core'
|
||||
wallabag.http_client:
|
||||
alias: 'httplug.client.wallabag'
|
||||
|
||||
Wallabag\SiteConfig\GrabySiteConfigBuilder:
|
||||
tags:
|
||||
@ -255,8 +255,8 @@ services:
|
||||
arguments:
|
||||
$databaseDriver: '%database_driver%'
|
||||
$databaseName: '%database_name%'
|
||||
$defaultSettings: '%wallabag_core.default_internal_settings%'
|
||||
$defaultIgnoreOriginInstanceRules: '%wallabag_core.default_ignore_origin_instance_rules%'
|
||||
$defaultSettings: '%wallabag.default_internal_settings%'
|
||||
$defaultIgnoreOriginInstanceRules: '%wallabag.default_ignore_origin_instance_rules%'
|
||||
|
||||
Wallabag\Mailer\UserMailer:
|
||||
arguments:
|
||||
@ -270,13 +270,13 @@ services:
|
||||
|
||||
Wallabag\Event\Listener\CreateConfigListener:
|
||||
arguments:
|
||||
$itemsOnPage: "%wallabag_core.items_on_page%"
|
||||
$feedLimit: "%wallabag_core.feed_limit%"
|
||||
$language: "%wallabag_core.language%"
|
||||
$readingSpeed: "%wallabag_core.reading_speed%"
|
||||
$actionMarkAsRead: "%wallabag_core.action_mark_as_read%"
|
||||
$listMode: "%wallabag_core.list_mode%"
|
||||
$displayThumbnails: "%wallabag_core.display_thumbnails%"
|
||||
$itemsOnPage: "%wallabag.items_on_page%"
|
||||
$feedLimit: "%wallabag.feed_limit%"
|
||||
$language: "%wallabag.language%"
|
||||
$readingSpeed: "%wallabag.reading_speed%"
|
||||
$actionMarkAsRead: "%wallabag.action_mark_as_read%"
|
||||
$listMode: "%wallabag.list_mode%"
|
||||
$displayThumbnails: "%wallabag.display_thumbnails%"
|
||||
|
||||
Wallabag\Event\Listener\AuthenticationFailureListener:
|
||||
tags:
|
||||
@ -286,51 +286,51 @@ services:
|
||||
calls:
|
||||
- [ setClient, [ '@Symfony\Contracts\HttpClient\HttpClientInterface $pocketClient' ] ]
|
||||
tags:
|
||||
- { name: wallabag_core.import, alias: pocket }
|
||||
- { name: wallabag.import, alias: pocket }
|
||||
|
||||
Wallabag\Import\WallabagV1Import:
|
||||
tags:
|
||||
- { name: wallabag_core.import, alias: wallabag_v1 }
|
||||
- { name: wallabag.import, alias: wallabag_v1 }
|
||||
|
||||
Wallabag\Import\WallabagV2Import:
|
||||
tags:
|
||||
- { name: wallabag_core.import, alias: wallabag_v2 }
|
||||
- { name: wallabag.import, alias: wallabag_v2 }
|
||||
|
||||
Wallabag\Import\ElcuratorImport:
|
||||
tags:
|
||||
- { name: wallabag_core.import, alias: elcurator }
|
||||
- { name: wallabag.import, alias: elcurator }
|
||||
|
||||
Wallabag\Import\ReadabilityImport:
|
||||
tags:
|
||||
- { name: wallabag_core.import, alias: readability }
|
||||
- { name: wallabag.import, alias: readability }
|
||||
|
||||
Wallabag\Import\InstapaperImport:
|
||||
tags:
|
||||
- { name: wallabag_core.import, alias: instapaper }
|
||||
- { name: wallabag.import, alias: instapaper }
|
||||
|
||||
Wallabag\Import\PinboardImport:
|
||||
tags:
|
||||
- { name: wallabag_core.import, alias: pinboard }
|
||||
- { name: wallabag.import, alias: pinboard }
|
||||
|
||||
Wallabag\Import\DeliciousImport:
|
||||
tags:
|
||||
- { name: wallabag_core.import, alias: delicious }
|
||||
- { name: wallabag.import, alias: delicious }
|
||||
|
||||
Wallabag\Import\FirefoxImport:
|
||||
tags:
|
||||
- { name: wallabag_core.import, alias: firefox }
|
||||
- { name: wallabag.import, alias: firefox }
|
||||
|
||||
Wallabag\Import\ChromeImport:
|
||||
tags:
|
||||
- { name: wallabag_core.import, alias: chrome }
|
||||
- { name: wallabag.import, alias: chrome }
|
||||
|
||||
Wallabag\Import\ShaarliImport:
|
||||
tags:
|
||||
- { name: wallabag_core.import, alias: shaarli }
|
||||
- { name: wallabag.import, alias: shaarli }
|
||||
|
||||
Wallabag\Import\PocketHtmlImport:
|
||||
tags:
|
||||
- { name: wallabag_core.import, alias: pocket_html }
|
||||
- { name: wallabag.import, alias: pocket_html }
|
||||
|
||||
# to factorize the proximity and bypass translation for prev & next
|
||||
pagerfanta.view.default_wallabag:
|
||||
|
||||
Reference in New Issue
Block a user