Order of items for each module is always consistent.
- Version
- Type
- Subdir
- Download Type
- Download Revision
- Download Branch
- Patches
Order of items for each module is always consistent.
projects[ckeditor][version] = "1.x-dev" | |
projects[ckeditor][type] = "module" | |
projects[ckeditor][subdir] = "contrib" | |
projects[ckeditor][download][type] = "git" | |
projects[ckeditor][download][revision] = "57245a9" | |
projects[ckeditor][download][branch] = "7.x-1.x" | |
; Integration with Media 2.x | |
; http://drupal.org/node/1504696 | |
projects[ckeditor][patch][1504696] = "http://drupal.org/files/issues/ckeditor-accomodate-latest-media-changes-1504696-120.patch" | |
; External plugin declarations are redundant. |
#!/usr/bin/env bash | |
echo " ..cl:." | |
echo " ..... .cdk00d" | |
echo " |
drupaldistro = ENV['DRUPAL_DISTRO'] | |
project = ENV['DRUPAL_PROJECT'] | |
Vagrant.configure("2") do |config| | |
# Install Chef | |
config.omnibus.chef_version = :latest | |
# The path to the Berksfile to use with Vagrant Berkshelf | |
config.berkshelf.enabled = true | |
config.berkshelf.berksfile_path = "./Berksfile" |
site :opscode | |
cookbook "drupal", git: "https://github.com/promet/drupal_cookbook.git" | |
cookbook "chef-solo-search", git: "https://github.com/edelight/chef-solo-search.git" | |
cookbook "solo-helper", git: "https://github.com/glennpratt/solo-helper_cookbook.git" | |
cookbook "mysql", "~> 3.0.12" |
#!/usr/bin/env bash | |
# Usage: vice makefile destination distro project vagrant-command | |
vagrant_install_clean_env() { | |
MAKEFILE=$1 | |
TARGET=$2 | |
DISTRO=$3 | |
PROJECT=$4 | |
VAGRANT=$5 | |
if [[ ! -r ~/.vice ]]; then |
Improve the iconography for the Interactive Preview (eye icon) | |
Use red to indicate previews rather than green. | |
Replace the 'eye' on the actual preview items with an 'X' that also has the ability to disable the site preview. | |
Use SPS as the way to view the current draft. Rather than having 'View Draft' and 'View Published' buttons, one would use the SPS to view the draft content and turn it off to view the published content. | |
Clean up the Interactive Info Bar to work with more ajax - ie: as soon as one clicks on a collection, the SPS is immediately enabled and there is no need for an 'Enable Preview' button. | |
Improve the experience of using the Interactive Info Bar - right now its an unclean and buggy experience overall. |
#!/usr/bin/env bash | |
# Usage: dice makefile docroot dbuser dbpass dbname sitename install-profile | |
drupal_install_clean_env() { | |
if [[ -r $2 ]]; then | |
sudo rm -r $2 | |
cd ~/ | |
fi | |
if [[ -r $1 ]]; then | |
drush make --working-copy --concurrency=5 $1 $2 |