This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/field_group.libraries.yml b/field_group.libraries.yml | |
index e09631b..2b9a811 100644 | |
--- a/field_group.libraries.yml | |
+++ b/field_group.libraries.yml | |
@@ -11,6 +11,30 @@ field_ui: | |
- core/drupal | |
- core/drupalSettings | |
+details_validation: | |
+ header: false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Script semi-automating the process of adding LetsEncrypt certificates to | |
# serve Acquia staging sites in HTTPS. | |
# See http://blog.dcycle.com/blog/2018-10-05/https-acquia-stage/ | |
# | |
set -e | |
BASE="$PWD" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ "$#" -ne "3" ] | |
then | |
echo "Please supply exactly three arguments:" | |
echo "" | |
echo " (1) the database username" | |
echo " (2) the database password, or NOPWD if none" | |
echo " (3) the database name" | |
else | |
if [ "$2" == "NOPWD" ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<body> | |
<canvas id="myCanvas" width="400" height="400" style="border:1px solid #d3d3d3;"></canvas> | |
<script> | |
var c = document.getElementById("myCanvas"); | |
var ctx = c.getContext("2d"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ "$#" -eq "0" ] | |
then | |
echo "Fetches a branch for a given repo, and then adds a link to it on the index" | |
echo "of the given repo." | |
echo "" | |
echo "Usage:" | |
echo "" | |
echo "./fetch-branch.sh -d=/path/to/repo --r=ssh://[email protected]/project --b=master" | |
else |