Blame Scripts/Bash/Functions/Render/render_doCopy.sh

415946
#!/bin/bash
415946
#
415946
# render_doCopy.sh -- This function duplicates rendition stuff.
415946
# Rendition stuff is formed by design models, design images,
415946
# pre-rendition configuration scripts and translations files. This
415946
# way, when we say to duplicate rendition stuff we are saying to
415946
# duplicate these four directory structures (i.e., design models,
415946
# design images, pre-rendition configuration scripts, and related
415946
# translations files).
415946
#
415946
# Copyright (C) 2009-2011 Alain Reguera Delgado
415946
# 
415946
# This program is free software; you can redistribute it and/or
415946
# modify it under the terms of the GNU General Public License as
415946
# published by the Free Software Foundation; either version 2 of the
415946
# License, or (at your option) any later version.
415946
# 
415946
# This program is distributed in the hope that it will be useful, but
415946
# WITHOUT ANY WARRANTY; without even the implied warranty of
415946
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
415946
# General Public License for more details.
415946
#
415946
# You should have received a copy of the GNU General Public License
415946
# along with this program; if not, write to the Free Software
415946
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
415946
# USA.
415946
# 
415946
# ----------------------------------------------------------------------
415946
# $Id$
415946
# ----------------------------------------------------------------------
415946
415946
function render_doCopy {
415946
415946
    # Verify target directory.
415946
    cli_checkRepoDirTarget
415946
ebe7f2
    # Determine what directory structure we are duplicating.
415946
415946
}