1. Install Tomcat on Mac Sources: http://www.malisphoto.com/tips/tomcatonosx.html http://wiki.apache.org/solr/SolrTomcat
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/sh | |
# Just copy and paste the lines below (all at once, it won't work line by line!) | |
# MAKE SURE YOU ARE HAPPY WITH WHAT IT DOES FIRST! THERE IS NO WARRANTY! | |
function abort { | |
echo "$1" | |
exit 1 | |
} | |
set -e |
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
:-) | |
:) | |
:-) | |
:o | |
:$ | |
:/ | |
:( | |
:-* | |
:# | |
:'( |
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
core = 7.x | |
api = 2 | |
; Drupal core | |
projects[drupal][type] = "core" | |
projects[drupal][version] = "7.14" | |
; Install profile | |
projects[vcb_profile][type] = "profile" | |
projects[vcb_profile][download][type] = "git" |
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
core = 7.x | |
api = 2 | |
; Copy of core | |
projects[drupal][version] = "7.18" | |
; Copy of hnw_profile | |
; This contains another makefile that will recursively fetch | |
; our contrib/custom modules, libraries and themes |
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
core = 7.x | |
api = 2 | |
; Copy of core | |
projects[drupal][version] = "7.22" | |
; Copy of uft_profile | |
; This contains another makefile that will recursively fetch | |
; our contrib/custom modules, libraries and themes |
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
core = 7.x | |
api = 2 | |
; Copy of core | |
projects[drupal][version] = "7.16" | |
; Copy of yarragreens_profile | |
; This contains another makefile that will recursively fetch | |
; our contrib/custom modules, libraries and themes |
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
core = 6.x | |
api = 2 | |
; Copy of core | |
projects[drupal][version] = "6.26" |
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
# /usr/bin/perl -w | |
use 5.010; | |
use strict; | |
use warnings; | |
use threads; | |
use Thread::Queue; | |
use autodie qw(:all); | |
use Image::ExifTool qw(ImageInfo); | |
use Data::Dumper; | |
use Imager; |
OlderNewer