Today's post is a quick tutorial how to use "git grep" and "git tag" to find the earliest tag that contains a particular line of code.
TL;DR: use:
git grep <regexp> $(git rev-list --all)...
Today's post is a quick tutorial how to use "git grep" and "git tag" to find the earliest tag that contains a particular line of code.
TL;DR: use:
git grep <regexp> $(git rev-list --all)...
DrupalCon (Drupal Conference) 2016 marked the 3rd DrupalCon that I attended. With Drupal 8 released, I felt it was time to go to the conference and kick the tires.
Held in historic New Orleans, I not only learned more about Drupal 8, but I learned about the beignets,...
Want to hide or move the WebAuth login block on your website? On Stanford Sites the login block is in the left sidebar by default giving the administrator easy access to log in and make changes to their website. As an administrator you have the option to move this block to a...
In November, 2015, the Stanford Web Services team got to dive into Drupal 8 during a weeklong sprint. I was excited to look at the RESTful web services that Drupal 8 gives out-of-the-box; what follows is my documentation of the various types of requests supported, required...
Not all modules belong on Drupal.org
Over time Stanford Web Services has built a large library of custom modules, features, and themes. Some of the work made its way back to Drupal.org, but some of it is specific to...
The development team was recently given the opportunity to stand up a Drupal 8 REST server with the intent of improving on our D7 content server, learning what's new with the framework and seeing how our content types would fit into the revised architecture. Having just attended...
Creating a Drupal Feature is easy. Creating a Drupal Feature that everyone can use is really hard.
Features, as in the Features module, allows you to very easily export something that you have created in a...
This module allows you to save versions of a page in a draft state before publishing.
Our team created the Stanford Sites Jumpstart service to help website owners focus their energy on what matters most: their content. To do this, Jumpstart includes a dashboard for simple content maintenance. This "Manage Content...
Today I'm going to review the features and functionality of the WebAuth Extras module. It extends the venerable WebAuth Module for Drupal (WMD), which offers single-sign on (SSO...