Skip to content

Instantly share code, notes, and snippets.

View awolfey's full-sized avatar

Aaron Wolfe awolfey

  • Cold Spring, NY
View GitHub Profile

##How deploy workflow relates to QA

  1. We deploy one sprint at a time. At the end of a sprint the release is pushed to Stage under a code freeze for new features/stories. All stories are QA'd Accepted stories are ready to push to Prod as is. Bugs can be fixed before the sprint is deployed to Prod. OR Bugs can be added to the next sprint if it's OK to deploy the buggy story anyway. The deploy to Prod only happens after all stories on Stage are triaged.

  2. After a sprint is deployed to Prod, Stage becomes the staging ground for the next sprint.

<div class="first column one-third">
<h3 style="color: white;">First Floor</h3>
<a class="reveal-image" href="http://www.une.edu/sites/default/files/MI_UNE_BIDDEFORD_ME_7514.jpg">
<img alt="First Floor" class="small-wysi" src="/sites/default/files/shared/First%20Floor-color_0.png">
</a>
</div>
@awolfey
awolfey / readme.md
Created January 8, 2015 16:42
Make alternative text required in CKeditor image dialog.
CKEDITOR.on('dialogDefinition', function(ev) {
var dialogName = ev.data.name;
var dialogDefinition = ev.data.definition;
var dialog = ev.data.definition.dialog;
switch (dialogName) {
case 'image': //Image Properties dialog
// Require alt text.
var altField = infoTab.get('txtAlt');
@awolfey
awolfey / readme.md
Last active August 29, 2015 14:13
Set Value of alt text if empty in CKEditor
CKEDITOR.on('dialogDefinition', function(ev) {
var dialogName = ev.data.name;
var dialog = ev.data.definition.dialog;
switch (dialogName) {
case 'image': //Image Properties dialog
// Set the alt value to the image file name if it's left blank.
var urlField = infoTab.get('txtUrl');
dialog.on('ok', function () {
var altField = dialog.getContentElement('info', 'txtAlt');
@awolfey
awolfey / command.js
Last active December 28, 2015 22:39
A backtick.io command to automatically log you into a Drupal site, with the option to change protocols. Based on / stolen from http://www.lullabot.com/blog/article/jeffs-handy-dandy-drupal-login-bookmarklet
if (typeof Drupal != "undefined" && typeof Drupal.settings != "undefined") {
var u = false;
if (typeof jQuery != "undefined" && jQuery("body.logged-in").length) {
if (!confirm("It looks like you're already logged in. Continue?")) {
return;
}
}
var o = window.location.protocol;
var l = window.location;
var h = l.hash || '';