Skip to content
This repository has been archived by the owner on Dec 18, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/config-inheritance'
Browse files Browse the repository at this point in the history
  • Loading branch information
danrot committed Jul 6, 2015
2 parents 0002731 + eb2ddd9 commit 8bc847b
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 16 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ php:
before_script: ./tests/beforetests.sh

after_script:
- cat /tmp/http_log
- ./tests/travis_print_logs.sh
- cat app/logs/admin/prod/prod.log
- cat app/logs/website/prod/prod.log

notifications:
slack:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
CHANGELOG for Sulu CMF
======================

* dev-master
* HOTFIX #475 [All] Fixed inheritance of configs and moved liip-theme config

* 1.0.0 (2015-07-01)
* ENHANCEMENT #471 [SULU-STANDARD] Cleanup config to reduce merge conflicts
* ENHANCEMENT #1319 [ContentBundle] Fixed location of cached structures
Expand Down
2 changes: 1 addition & 1 deletion app/config/admin/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
imports:
- { resource: ../config.yml }
- { resource: sulu.yml }
- { resource: security.yml }
- { resource: ../config.yml }
- { resource: ../widgets.yml }

# Assetic Configuration
Expand Down
3 changes: 0 additions & 3 deletions app/config/admin/sulu.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
imports:
- { resource: ../sulu.yml }

framework:
router:
resource: "%kernel.root_dir%/config/admin/routing.yml"
Expand Down
8 changes: 7 additions & 1 deletion app/config/config.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
imports:
- { resource: parameters.yml }
- { resource: services.yml }
- { resource: sulu.yml }

framework:
#esi: ~
#translator: { fallbacks: ["%locale%"] }
secret: "%secret%"
router:
resource: "%kernel.root_dir%/config/routing.yml"
strict_requirements: ~
form: ~
csrf_protection: ~
Expand Down Expand Up @@ -70,3 +70,9 @@ swiftmailer:
username: "%mailer_user%"
password: "%mailer_password%"
spool: { type: memory }

# LIIP Theme Configuration
liip_theme:
themes: ["default"]
active_theme: "default"
load_controllers: false
6 changes: 0 additions & 6 deletions app/config/sulu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,6 @@ fos_rest:
routing_loader:
default_format: "json"

# LIIP Theme Configuration
liip_theme:
themes: ["default"]
active_theme: "default"
load_controllers: false

# JMS Serializer
jms_serializer:
metadata:
Expand Down
2 changes: 1 addition & 1 deletion app/config/website/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
imports:
- { resource: ../config.yml }
- { resource: sulu.yml }
- { resource: security.yml }
- { resource: ../config.yml }

# Assetic Configuration
assetic:
Expand Down
3 changes: 0 additions & 3 deletions app/config/website/sulu.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
imports:
- { resource: ../sulu.yml }

framework:
router:
resource: "%kernel.root_dir%/config/website/routing.yml"
Expand Down
1 change: 1 addition & 0 deletions tests/beforetests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ composer selfupdate
composer install --no-interaction
cp app/Resources/webspaces/sulu.io.xml.dist app/Resources/webspaces/sulu.io.xml
cp app/Resources/pages/overview.xml.dist app/Resources/pages/overview.xml
cp app/Resources/pages/default.xml.dist app/Resources/pages/default.xml

php app/console sulu:build dev --no-interaction

Expand Down

0 comments on commit 8bc847b

Please sign in to comment.