Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/ec-europa/toolkit into …
Browse files Browse the repository at this point in the history
…develop
  • Loading branch information
jonhy81 committed Feb 19, 2018
2 parents c97179f + b935a43 commit 1f9c8c6
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 11 deletions.
7 changes: 4 additions & 3 deletions build.default.props
Original file line number Diff line number Diff line change
Expand Up @@ -230,11 +230,12 @@ db.url = ${db.type}://${db.user}:${db.password}@${db.host}:${db.port}/${db.name}
# Solr configuration.
# -------------------
solr.enable = 1
solr.host = solr
solr.scheme = http
solr.host = localhost
solr.port = 8983
solr.path = /solr
solr.type = d7_apachesolr
solr.scheme = http
solr.url = ${solr.scheme}://${solr.host}:${solr.port}/solr/${solr.type}
solr.url = ${solr.scheme}://${solr.host}:${solr.port}${solr.path}/${solr.type}

# Admin configuration.
# --------------------
Expand Down
7 changes: 4 additions & 3 deletions docs/configuring-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,11 +249,12 @@ db.url = ${db.type}://${db.user}:${db.password}@${db.host}:${db.port}/${db.name}
# Solr configuration.
# -------------------
solr.enable = 1
solr.host = solr
solr.scheme = http
solr.host = localhost
solr.port = 8983
solr.path = /solr
solr.type = d7_apachesolr
solr.scheme = http
solr.url = ${solr.scheme}://${solr.host}:${solr.port}/solr/${solr.type}
solr.url = ${solr.scheme}://${solr.host}:${solr.port}${solr.path}/${solr.type}

# Admin configuration.
# --------------------
Expand Down
2 changes: 1 addition & 1 deletion includes/phing/props/forbidden.props
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ db.url = ${db.type}://${db.user}:${db.password}@${db.host}:${db.port}/${db.name}

# Solr configuration.
# -------------------
solr.url = ${solr.schem}://${solr.host}:${solr.port}/solr/${solr.type}
solr.url = ${solr.schem}://${solr.host}:${solr.port}${solr.path}/${solr.type}

# Local resources.
# ----------------
Expand Down
5 changes: 3 additions & 2 deletions includes/phing/props/main.props
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,12 @@ db.prefix =
# Solr configuration.
# -------------------
solr.enable = 1
solr.scheme = http
solr.host = 127.0.0.1
solr.port = 8983
solr.path = /solr
solr.type = d7_apachesolr
solr.scheme = http
solr.url = ${solr.scheme}://${solr.host}:${solr.port}/solr/${solr.type}
solr.url = ${solr.scheme}://${solr.host}:${solr.port}${solr.path}/${solr.type}

# Admin configuration.
# --------------------
Expand Down
4 changes: 2 additions & 2 deletions includes/phing/src/Tasks/PhpCodeSnifferConfigurationTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ public function main()

// Add the shorthand options.
$shorthand_options = array(
'p' => 'showProgress',
's' => 'showSniffCodes',
'p' => '_showProgress',
's' => '_showSniffCodes',
);

$options = array_filter(
Expand Down

0 comments on commit 1f9c8c6

Please sign in to comment.