Skip to content

Commit

Permalink
Merge pull request #114 from SBU-BMI/develop
Browse files Browse the repository at this point in the history
Update Drupal
  • Loading branch information
ebremer authored Nov 8, 2023
2 parents 5bebacf + 0832e9e commit 1e59c60
Show file tree
Hide file tree
Showing 6,325 changed files with 144,334 additions and 99,650 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 1 addition & 1 deletion config/field.storage.node.field_map_type.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
uuid: a90ceafd-3e55-461e-8c64-6de8b1084c67
uuid: b69068b2-2399-4c56-899f-e00c95a679ac
langcode: en
status: true
dependencies:
Expand Down
1 change: 1 addition & 0 deletions config/search_api.server.default_server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ backend_config:
autocomplete:
suggest_suffix: true
suggest_words: true
phrase: disabled
1 change: 1 addition & 0 deletions config/views.view.review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ display:
batch: true
batch_size: 10
form_step: true
ajax_loader: false
buttons: false
action_title: Action
clear_on_exposed: true
Expand Down
Binary file modified mysql.tgz
Binary file not shown.
6 changes: 6 additions & 0 deletions quip/.ht.router.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@
* @see http://php.net/manual/en/features.commandline.webserver.php
*/

if (PHP_SAPI !== 'cli-server') {
// Bail out if this is not PHP's Development Server.
header($_SERVER['SERVER_PROTOCOL'] . ' 403 Forbidden');
exit;
}

$url = parse_url($_SERVER['REQUEST_URI']);
if (file_exists(__DIR__ . $url['path'])) {
// Serve the requested resource as-is.
Expand Down
8 changes: 4 additions & 4 deletions quip/.htaccess
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#

# Protect files and directories from prying eyes.
<FilesMatch "\.(engine|inc|install|make|module|profile|po|sh|.*sql|theme|twig|tpl(\.php)?|xtmpl|yml)(~|\.sw[op]|\.bak|\.orig|\.save)?$|^(\.(?!well-known).*|Entries.*|Repository|Root|Tag|Template|composer\.(json|lock)|web\.config)$|^#.*#$|\.php(~|\.sw[op]|\.bak|\.orig|\.save)$">
<FilesMatch "\.(engine|inc|install|make|module|profile|po|sh|.*sql|theme|twig|tpl(\.php)?|xtmpl|yml)(~|\.sw[op]|\.bak|\.orig|\.save)?$|^(\.(?!well-known).*|Entries.*|Repository|Root|Tag|Template|composer\.(json|lock)|web\.config|yarn\.lock|package\.json)$|^#.*#$|\.php(~|\.sw[op]|\.bak|\.orig|\.save)$">
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
Expand Down Expand Up @@ -42,7 +42,7 @@ AddEncoding gzip svgz
# Enable expirations.
ExpiresActive On

# Cache all files for 2 weeks after access (A).
# Cache all files and redirects for 2 weeks after access (A).
ExpiresDefault A1209600

<FilesMatch \.php$>
Expand Down Expand Up @@ -158,12 +158,12 @@ AddEncoding gzip svgz
# Serve gzip compressed CSS files if they exist and the client accepts gzip.
RewriteCond %{HTTP:Accept-encoding} gzip
RewriteCond %{REQUEST_FILENAME}\.gz -s
RewriteRule ^(.*)\.css $1\.css\.gz [QSA]
RewriteRule ^(.*css_[a-zA-Z0-9-_]+)\.css$ $1\.css\.gz [QSA]

# Serve gzip compressed JS files if they exist and the client accepts gzip.
RewriteCond %{HTTP:Accept-encoding} gzip
RewriteCond %{REQUEST_FILENAME}\.gz -s
RewriteRule ^(.*)\.js $1\.js\.gz [QSA]
RewriteRule ^(.*js_[a-zA-Z0-9-_]+)\.js$ $1\.js\.gz [QSA]

# Serve correct content types, and prevent double compression.
RewriteRule \.css\.gz$ - [T=text/css,E=no-gzip:1,E=no-brotli:1]
Expand Down
3 changes: 2 additions & 1 deletion quip/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,15 @@
"drupal/core-project-message": "^9",
"drupal/core-recommended": "^9.4.5",
"drupal/css_editor": "^2.0",
"drupal/csv_serialization": "^2.1",
"drupal/csv_serialization": "^3.0",
"drupal/d8w3css": "^1.15",
"drupal/ds": "^3.4",
"drupal/easy_breadcrumb": "^2.0",
"drupal/externalauth": "^1.4",
"drupal/facets": "^2.0",
"drupal/field_group": "^3.3",
"drupal/field_permissions": "^1.0@RC",
"drupal/file_replace": "^1.3",
"drupal/flag": "^4.0@beta",
"drupal/hide_revision_field": "^2.1",
"drupal/http_response_headers": "^2.0",
Expand Down
Loading

0 comments on commit 1e59c60

Please sign in to comment.