From 3065500fd761a41a977d2bc8055862288cf0ecfe Mon Sep 17 00:00:00 2001 From: Alain Reguera Delgado Date: Jul 21 2012 18:02:40 +0000 Subject: Add `centos-art.conf' file: - This file contains the default configuration used by centos-ar.sh. - People that need to use a different configuration (ie., to put their working copy in a place different from `~/Projects/CentOS' directory) can use variable CLI_WRKCOPY in this file to set the location they prefere. - Presently it is possible to change the following information: - Absolute path of the working copy - Copyright information printed on produced content. - The branding name used in files. Other information might be added in the future. --- diff --git a/Scripts/Bash/centos-art.conf b/Scripts/Bash/centos-art.conf new file mode 100755 index 0000000..03593b6 --- /dev/null +++ b/Scripts/Bash/centos-art.conf @@ -0,0 +1,22 @@ +#!/bin/bash +# +# centos-art.conf -- The centos-art.sh script user-specific +# configuration file. +# +# ---------------------------------------------------------------------- + +# Absolute path of your working copy directory. +CLI_WRKCOPY=${HOME}/Projects/CentOS + +# Copyright information printed on produced content. +COPYRIGHT_HOLDER="The CentOS Project" +COPYRIGHT_YEAR_FIRST="2009" + +# Branding name. This is a few letters text describing the copyright +# holder. This information is used to retrive some file names from the +# repository structure (like those stored under +# `turnk/Identity/(Images|Models)/Brands/Symbols/${BRAND_FILENAME}.svg'). +# Using this variable let us reuse the same functionalities (i.e., +# Render, Help, etc.) in different projects that require to use +# different file names for branding. +BRAND_FILENAME='centos'