Skip to content

Commit 45a3d28

Browse files
committed
Merge branch 'composer2' into develop
2 parents 097a1c2 + adddbe1 commit 45a3d28

File tree

4 files changed

+140
-41
lines changed

4 files changed

+140
-41
lines changed

composer.lock

Lines changed: 64 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web/sites/default/settings.php

Lines changed: 54 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,16 @@
105105
* webserver. For most other drivers, you must specify a
106106
* username, password, host, and database name.
107107
*
108+
* Drupal core implements drivers for mysql, pgsql, and sqlite. Other drivers
109+
* can be provided by contributed or custom modules. To use a contributed or
110+
* custom driver, the "namespace" property must be set to the namespace of the
111+
* driver. The code in this namespace must be autoloadable prior to connecting
112+
* to the database, and therefore, prior to when module root namespaces are
113+
* added to the autoloader. To add the driver's namespace to the autoloader,
114+
* set the "autoload" property to the PSR-4 base directory of the driver's
115+
* namespace. This is optional for projects managed with Composer if the
116+
* driver's namespace is in Composer's autoloader.
117+
*
108118
* Transaction support is enabled by default for all drivers that support it,
109119
* including MySQL. To explicitly disable it, set the 'transactions' key to
110120
* FALSE.
@@ -224,6 +234,20 @@
224234
* 'database' => '/path/to/databasefilename',
225235
* ];
226236
* @endcode
237+
*
238+
* Sample Database configuration format for a driver in a contributed module:
239+
* @code
240+
* $databases['default']['default'] = [
241+
* 'driver' => 'mydriver',
242+
* 'namespace' => 'Drupal\mymodule\Driver\Database\mydriver',
243+
* 'autoload' => 'modules/mymodule/src/Driver/Database/mydriver/',
244+
* 'database' => 'databasename',
245+
* 'username' => 'sqlusername',
246+
* 'password' => 'sqlpassword',
247+
* 'host' => 'localhost',
248+
* 'prefix' => '',
249+
* ];
250+
* @endcode
227251
*/
228252

229253
/**
@@ -266,7 +290,7 @@
266290
* $settings['hash_salt'] = file_get_contents('/home/example/salt.txt');
267291
* @endcode
268292
*/
269-
$settings['hash_salt'] = 'w-NR7Q2C3URQH6qdRvDPlbxVqdvyGMbsOwyXgtqkdJGNI7FBMbrD79UMx2DDNlSqvfmY-OOKLw';
293+
$settings['hash_salt'] = '';
270294

271295
/**
272296
* Deployment identifier.
@@ -741,13 +765,29 @@
741765
*/
742766
$settings['entity_update_backup'] = TRUE;
743767

768+
/**
769+
* Node migration type.
770+
*
771+
* This is used to force the migration system to use the classic node migrations
772+
* instead of the default complete node migrations. The migration system will
773+
* use the classic node migration only if there are existing migrate_map tables
774+
* for the classic node migrations and they contain data. These tables may not
775+
* exist if you are developing custom migrations and do not want to use the
776+
* complete node migrations. Set this to TRUE to force the use of the classic
777+
* node migrations.
778+
*/
779+
$settings['migrate_node_migrate_type_classic'] = FALSE;
780+
744781
/**
745782
* Load local development override configuration, if available.
746783
*
747-
* Use settings.local.php to override variables on secondary (staging,
748-
* development, etc) installations of this site. Typically used to disable
749-
* caching, JavaScript/CSS compression, re-routing of outgoing emails, and
750-
* other things that should not happen on development and testing sites.
784+
* Create a settings.local.php file to override variables on secondary (staging,
785+
* development, etc.) installations of this site.
786+
*
787+
* Typical uses of settings.local.php include:
788+
* - Disabling caching.
789+
* - Disabling JavaScript/CSS compression.
790+
* - Rerouting outgoing emails.
751791
*
752792
* Keep this code block at the end of this file to take full effect.
753793
*/
@@ -756,8 +796,17 @@
756796
# include $app_root . '/' . $site_path . '/settings.local.php';
757797
# }
758798

799+
// <DDSETTINGS>
800+
// Please don't edit anything between <DDSETTINGS> tags.
801+
// This section is autogenerated by Acquia Dev Desktop.
802+
if (isset($_SERVER['DEVDESKTOP_DRUPAL_SETTINGS_DIR']) && file_exists($_SERVER['DEVDESKTOP_DRUPAL_SETTINGS_DIR'] . '/loc_rebuild_dd.inc')) {
803+
require $_SERVER['DEVDESKTOP_DRUPAL_SETTINGS_DIR'] . '/loc_rebuild_dd.inc';
804+
}
805+
// </DDSETTINGS>
806+
759807
$settings['config_sync_directory'] = '../config/sync';
760808

809+
761810
// Load the initial variables required for the environments.
762811
include __DIR__ . DIRECTORY_SEPARATOR . '/init.settings.php';
763812

web/themes/custom/fds_custom_theme/dist/stylesheets/stylesheet.css

Lines changed: 7 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web/themes/custom/fds_custom_theme/src/styles/theme/_misc.scss

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,21 @@ body a {
3737
// }
3838
//}
3939

40+
body {
41+
42+
ol {
43+
44+
> li {
45+
list-style-type: decimal;
46+
padding-left: 0;
47+
48+
&:before {
49+
display: none;
50+
}
51+
}
52+
}
53+
}
54+
4055
.fields-inline {
4156

4257
> .field {

0 commit comments

Comments
 (0)