This file contains 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
<?php | |
/** | |
* JavaScriptConfig | |
* A utility class to add in configuration information for JS files in the head | |
* section, directly from PHP and json_encode with Requirements. | |
* Used with SilverStripe 2.4+ | |
* @author @willmorgan | |
*/ | |
class JavaScriptConfig { |
This file contains 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
<?php | |
/** | |
* TableOptionsetField | |
* DataObjectManager style field that allows arbitrary options to be rendered on | |
* the frontend with maximum flexibility and ease. | |
* @author Will Morgan <[email protected]> | |
*/ | |
class TableOptionsetField extends FormField { |
This file contains 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
if(this.transitions) { | |
body.addClass('bhv-transition-now').css('height', fullHeight); | |
body.height(); | |
body.removeClass('bhv-transition-now').addClass('state-transitioning'); | |
body.height(); | |
body.css('height', 0); | |
body.on('transitionend.close', function(event) { | |
body.off('transitionend.close'); | |
body.addClass('state-hidden'); | |
body.height(); |
This file contains 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/sh | |
# Pre-commit file needs to be executable so first | |
# chmod +x .git/hooks/pre-commit | |
# Fix your grunt path | |
PATH="/usr/local/bin:$PATH" | |
# Runs grunt default | |
echo "Running Grunt..." |
This file contains 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
<!-- Step 0: Ensure your server configuration is correct (see sample-apache.conf) --> | |
<!-- Step 1: Include the hash script (see git-hash.php) --> | |
<?php $hash = require_once 'git-hash.php'; ?> | |
<html> | |
<!-- Step 2: Prepend the hash to any combined assets --> | |
<link rel="stylesheet" href="assets/_combined-<?=$hash?>.css" /> | |
<script src="assets/_combined-<?=$hash?>.js" /> |
This file contains 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
function getAnchorCoordinates(anchor, container, me) { | |
me = me || this.el; | |
container = container || document.body; | |
// Margins - use half a margin for normal positioning, the full margin for compensating | |
// against the container box | |
var offsetMarginX = 30; | |
var offsetMarginY = 30; | |
// The coordinates we're anchoring around |
This file contains 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
<IfModule pagespeed_module> | |
ModPagespeed on | |
ModPagespeedDisallow "*/admin/*" | |
AddOutputFilterByType MOD_PAGESPEED_OUTPUT_FILTER text/html | |
ModPagespeedLowercaseHtmlNames on | |
ModPagespeedEnableFilters prioritize_critical_css,defer_javascript | |
ModPagespeedEnableFilters convert_jpeg_to_webp,inline_preview_images | |
ModPagespeedEnableFilters collapse_whitespace,remove_comments | |
</IfModule> |
This file contains 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
const sshpk = require('sshpk'); | |
function printClientCert(cert) { | |
return sshpk.parseCertificate(cert, 'x509'); | |
} | |
module.exports = function (context, req) { | |
context.log( | |
printClientCert(Buffer.from(req.headers['x-arr-clientcert'], 'base64')) | |
); |
This file contains 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
set +e | |
# Check for accidental `.only` blocks inside tests, and fail the tests if any are found: | |
ACCIDENTAL_ONLY=$(grep -R -m 1 --include="*.js" --exclude-dir=node_modules --exclude-dir=.git "\.only" . 2>&1) | |
HAS_ACCIDENTAL_ONLY=$? | |
set -e | |
if [ $HAS_ACCIDENTAL_ONLY == 0 ]; | |
then | |
echo "Found a \`.only\` block inside the tests; failing CI build. Details below:" | |
echo ${ACCIDENTAL_ONLY} |
OlderNewer