build-dev.sh |
build-dev.sh |
|
#!/bin/sh
# Script to build OpenAtrium 2.x
./build.sh -d -p $1 |
build.sh |
build.sh |
|
#!/bin/sh
# Script to build OpenAtrium 2.x
# Make sure the correct number of args was passed from the command line
if [ $# -eq 0 ]; then
echo "Usage $0 [-d] target_build_dir"
exit 1
fi
DEV_BUILD=0
PANOPOLY_DEV=0
while getopts… |
db_dump.sh |
scripts/db_dump.sh |
|
#!/bin/bash
# Configuration variables
drupal_root="/opt/development/integration/drupal"
backup_dest="/opt/backups"
dbname="oa-integration.sql"
# Make sure the backup directory is available
if [ ! -d ${backup_dest} ];… |
db_restore.sh |
scripts/db_restore.sh |
|
#!/bin/bash
# Configuration variables
backup_file="/opt/backups/oa-integration.sql"
# Check if file exists
if [ ! -f ${backup_file} ]; then
backup_file="/opt/development/integration/oa-integration.sql"
fi
# Check if file… |
install_from_db.profile |
install_from_db/install_from_db.profile |
|
Install profile helper to add option for importing from database. |
modules.sh |
scripts/modules.sh |
|
#!/bin/bash
# Script to list modules that need to be updated
#
main () {
if [ $# -eq 0 ]; then
echo "Usage $0 [-c] [-d] [-p] [-f] [-b branch-name] [module]"
echo " -c change to directory of module"
echo " -d shows the… |
openatrium.css |
openatrium.css |
|
/**
* Stylesheet for Panopoly Profile
*/
#panopoly-theme-selection-form .form-item-theme {
clear: both;
margin-top: .5em;
margin-bottom: .5em;
}
#panopoly-theme-selection-form .form-item-theme label img {
float: left;
width: 100px;
… |
openatrium.info |
openatrium.info |
|
name = OpenAtrium
distribution_name = Open Atrium 2
description = A team collaboration platform
core = 7.x
exclusive = TRUE
base[] = panopoly
; Drupal Core
dependencies[] = menu
dependencies[] = image
dependencies[] = list
dependencies[] =… |
openatrium.install |
openatrium.install |
|
Perform actions to set up the site for this profile. |
openatrium.profile |
openatrium.profile |
|
|
README.txt |
README.txt |
|
Open Atrium is a rich distribution of many (150+) Drupal modules. Installing
Open Atrium may require additional resources beyond a minimal Drupal 7
installation.
System Requirements
-------------------
In addition to the normal Drupal 7… |
README.txt |
install_from_db/README.txt |
|
Import From DB
==============
This is not a module. It is a helper file to be added to your Drupal install
profile that will add an option to import your site from an existing database
dump.
Installation
------------
1) Extract the files in this… |
travis-ci.sh |
scripts/travis-ci.sh |
|
#!/bin/bash
COMMAND=$1
BUILD_TOP=`dirname $TRAVIS_BUILD_DIR`
EXIT_VALUE=0
export PATH="$HOME/.composer/vendor/bin:$PATH"
export DISPLAY=:99.0
export CHROME_SANDBOX=/opt/google/chrome/chrome-sandbox
##
# SCRIPT COMMANDS
##
#… |
verify_make.sh |
verify_make.sh |
|
#!/bin/sh
CURDIR=`pwd -P`
shift $((OPTIND-1))
TARGET=$1
if [ -z "$TARGET" ]; then
echo "Usage $0 target directory"
exit 2
fi
PATTERN=${2:-*}
cd $TARGET
TARGET=`pwd -P`;
# Find make files, very
for DIRECTORY in $PATTERN/; do
… |