[ticket/690] Replace windows with unix line endings

B3P-690
This commit is contained in:
Marc Alexander
2017-01-15 12:15:54 +01:00
parent e6a4c8758a
commit 7929bc4da4
2 changed files with 119 additions and 119 deletions

View File

@@ -1,13 +1,13 @@
board3_portal_controller: board3_portal_controller:
path: /portal path: /portal
defaults: { _controller: board3.portal.main:handle } defaults: { _controller: board3.portal.main:handle }
# This is currently not supported yet # This is currently not supported yet
# board3_portal_pages_controller: # board3_portal_pages_controller:
# pattern: /portal/{page} # pattern: /portal/{page}
# defaults: { _controller: board3.portal.main:handle_page, page: "portal" } # defaults: { _controller: board3.portal.main:handle_page, page: "portal" }
# Redirect to portal by default # Redirect to portal by default
board3_portal_redirect_controller: board3_portal_redirect_controller:
path: / path: /
defaults: { _controller: board3.portal.main:handle } defaults: { _controller: board3.portal.main:handle }

View File

@@ -1,106 +1,106 @@
imports: imports:
- { resource: modules.yml } - { resource: modules.yml }
parameters: parameters:
board3.portal.config.table: %core.table_prefix%portal_config board3.portal.config.table: %core.table_prefix%portal_config
board3.portal.modules.table: %core.table_prefix%portal_modules board3.portal.modules.table: %core.table_prefix%portal_modules
services: services:
board3.portal.main: board3.portal.main:
class: board3\portal\controller\main class: board3\portal\controller\main
arguments: arguments:
- '@board3.portal.columns' - '@board3.portal.columns'
- '@config' - '@config'
- '@board3.portal.controller_helper' - '@board3.portal.controller_helper'
- '@template' - '@template'
- '@user' - '@user'
- '@path_helper' - '@path_helper'
- '%core.root_path%' - '%core.root_path%'
- '.%core.php_ext%' - '.%core.php_ext%'
- '%board3.portal.config.table%' - '%board3.portal.config.table%'
- '%board3.portal.modules.table%' - '%board3.portal.modules.table%'
board3.portal.controller_helper: board3.portal.controller_helper:
class: board3\portal\controller\helper class: board3\portal\controller\helper
arguments: arguments:
- '@auth' - '@auth'
- '@board3.portal.columns' - '@board3.portal.columns'
- '@config' - '@config'
- '@language' - '@language'
- '@template' - '@template'
- '@user' - '@user'
- '@path_helper' - '@path_helper'
- '@board3.portal.helper' - '@board3.portal.helper'
- '%core.root_path%' - '%core.root_path%'
- '.%core.php_ext%' - '.%core.php_ext%'
board3.portal.module_collection: board3.portal.module_collection:
class: phpbb\di\service_collection class: phpbb\di\service_collection
arguments: arguments:
- '@service_container' - '@service_container'
tags: tags:
- { name: service_collection, tag: board3.portal.module } - { name: service_collection, tag: board3.portal.module }
board3.portal.helper: board3.portal.helper:
class: board3\portal\includes\helper class: board3\portal\includes\helper
arguments: arguments:
- '@board3.portal.module_collection' - '@board3.portal.module_collection'
board3.portal.modules_helper: board3.portal.modules_helper:
class: board3\portal\includes\modules_helper class: board3\portal\includes\modules_helper
arguments: arguments:
- '@auth' - '@auth'
- '@config' - '@config'
- '@controller.helper' - '@controller.helper'
- '@request' - '@request'
board3.portal.columns: board3.portal.columns:
class: board3\portal\portal\columns class: board3\portal\portal\columns
board3.portal.fetch_posts: board3.portal.fetch_posts:
class: board3\portal\portal\fetch_posts class: board3\portal\portal\fetch_posts
arguments: arguments:
- '@auth' - '@auth'
- '@cache' - '@cache'
- '@config' - '@config'
- '@dbal.conn' - '@dbal.conn'
- '@board3.portal.modules_helper' - '@board3.portal.modules_helper'
- '@user' - '@user'
board3.portal.listener: board3.portal.listener:
class: board3\portal\event\listener class: board3\portal\event\listener
arguments: arguments:
- '@board3.portal.main' - '@board3.portal.main'
- '@auth' - '@auth'
- '@config' - '@config'
- '@controller.helper' - '@controller.helper'
- '@path_helper' - '@path_helper'
- '@template' - '@template'
- '@user' - '@user'
- '%core.php_ext%' - '%core.php_ext%'
tags: tags:
- { name: event.listener } - { name: event.listener }
board3.portal.modules.manager: board3.portal.modules.manager:
class: board3\portal\portal\modules\manager class: board3\portal\portal\modules\manager
arguments: arguments:
- '@cache' - '@cache'
- '@dbal.conn' - '@dbal.conn'
- '@board3.portal.controller_helper' - '@board3.portal.controller_helper'
- '@board3.portal.columns' - '@board3.portal.columns'
- '@board3.portal.helper' - '@board3.portal.helper'
- '@board3.portal.modules.constraints_handler' - '@board3.portal.modules.constraints_handler'
- '@board3.portal.modules.database_handler' - '@board3.portal.modules.database_handler'
- '@request' - '@request'
- '@user' - '@user'
board3.portal.modules.database_handler: board3.portal.modules.database_handler:
class: board3\portal\portal\modules\database_handler class: board3\portal\portal\modules\database_handler
arguments: arguments:
- '@dbal.conn' - '@dbal.conn'
board3.portal.modules.constraints_handler: board3.portal.modules.constraints_handler:
class: board3\portal\portal\modules\constraints_handler class: board3\portal\portal\modules\constraints_handler
arguments: arguments:
- '@board3.portal.columns' - '@board3.portal.columns'
- '@user' - '@user'