Blame Manual/repository-html/repository_76.html

632e8b
632e8b
<html>
632e8b
632e8b
organization, and administration of CentOS Artwork Repository.
632e8b
632e8b
Copyright C 2009-2011 Alain Reguera Delgado
632e8b
632e8b
Permission is granted to copy, distribute and/or modify this document
632e8b
under the terms of the GNU Free Documentation License, Version 1.2 or
632e8b
any later version published by the Free Software Foundation; with no
632e8b
Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A
632e8b
copy of the license is included in the section entitled GNU Free
632e8b
Documentation License.  
632e8b
-->
949b9b
632e8b
632e8b
Written by: Lionel Cons <Lionel.Cons@cern.ch> (original author)
632e8b
            Karl Berry  <karl@freefriends.org>
632e8b
            Olaf Bachmann <obachman@mathematik.uni-kl.de>
632e8b
            and many others.
632e8b
Maintained by: Many creative people <dev@texi2html.cvshome.org>
632e8b
Send bugs and suggestions to <users@texi2html.cvshome.org>
632e8b
632e8b
-->
632e8b
<head>
06d106
<title>CentOS Artwork Repository: 2.72 The trunk/Scripts/Bash/Cli/Functions/Render/Config Directory</title>
632e8b
06d106
<meta name="description" content="CentOS Artwork Repository: 2.72 The trunk/Scripts/Bash/Cli/Functions/Render/Config Directory">
06d106
<meta name="keywords" content="CentOS Artwork Repository: 2.72 The trunk/Scripts/Bash/Cli/Functions/Render/Config Directory">
632e8b
<meta name="resource-type" content="document">
632e8b
<meta name="distribution" content="global">
632e8b
<meta name="Generator" content="texi2html 1.76">
632e8b
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
632e8b
<style type="text/css">
632e8b
632e8b
@import "/home/centos/artwork/trunk/Identity/Models/Css/Texi2html/common.css";
632e8b
632e8b
a.summary-letter {text-decoration: none}
632e8b
pre.display {font-family: serif}
632e8b
pre.format {font-family: serif}
632e8b
pre.menu-comment {font-family: serif}
632e8b
pre.menu-preformatted {font-family: serif}
632e8b
pre.smalldisplay {font-family: serif; font-size: smaller}
632e8b
pre.smallexample {font-size: smaller}
632e8b
pre.smallformat {font-family: serif; font-size: smaller}
632e8b
pre.smalllisp {font-size: smaller}
632e8b
span.sansserif {font-family:sans-serif; font-weight:normal;}
632e8b
ul.toc {list-style: none}
632e8b
-->
632e8b
</style>
632e8b
632e8b
632e8b
</head>
632e8b
632e8b
<body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
632e8b
632e8b
06d106
[ < ]
06d106
[ > ]
632e8b
   
632e8b
[ << ]
632e8b
[ Up ]
06d106
[ >> ]
632e8b
   
632e8b
   
632e8b
   
632e8b
   
632e8b
[Top]
632e8b
[Contents]
06d106
[Index]
632e8b
[ ? ]
632e8b
06d106
06d106
06d106

2.72 The <tt>`trunk/Scripts/Bash/Cli/Functions/Render/Config'</tt> Directory

632e8b
632e8b
06d106
632e8b

2.72.1 Goals

632e8b
06d106

The <tt>`trunk/Scripts/Bash/Config'</tt> directory exists to oraganize

06d106
pre-rendering configuration scripts.
632e8b

632e8b
06d106
632e8b

2.72.2 Description

632e8b
06d106

Pre-rendering configuration scripts let you customize the way

06d106
centos-art.sh script renders identity and translation
06d106
repository entries.  Pre-rendering configuration scripts are
06d106
<tt>`render.conf.sh'</tt> files with render_loadConfig function
06d106
definition inside. 
06d106

06d106

There is one <tt>`render.conf.sh'</tt> file for each pre-rendering

06d106
configuration entry. Pre-rendering configuration entries can be based
06d106
both on identity and translation repository entires.  Pre-rendering
06d106
configuration entries are required for each identity entry, but not
06d106
for translation entries. 
632e8b

632e8b
06d106
06d106

2.72.2.1 The <tt>`render.conf.sh'</tt> identity model

9bfd15
06d106

Inside CentOS Artwork Repository, we consider identity entries to all

06d106
directories under <tt>`trunk/Identity'</tt> directory. Identity entries can be
06d106
image-based or text-based. When you render image-based identity
06d106
entries you need to use image-based pre-rendering configuration
06d106
scripts. Likewise, when you render text-based identity entries you
06d106
need to use text-based pre-rendering configuration scripts.
9bfd15

06d106

Inside identity pre-rendering configuration scripts, image-based

06d106
pre-rendering configuration scripts look like the following:
9bfd15

06d106
#!/bin/bash
06d106
06d106
function render_loadConfig {
06d106
06d106
    # Define rendering actions.
06d106
    ACTIONS[0]='BASE:renderImage'
06d106
    ACTIONS[1]='POST:renderFormats: tif xpm pdf ppm'
06d106
06d106
}
06d106
06d106

Inside identity pre-rendering configuration scripts, text-based

06d106
pre-rendering configuration scripts look like the following:
9bfd15

06d106
#!/bin/bash
06d106
06d106
function render_loadConfig {
06d106
06d106
    # Define rendering actions.
06d106
    ACTIONS[0]='BASE:renderText'
06d106
    ACTIONS[1]='POST:formatText: --width=70 --uniform-spacing'
06d106
06d106
}
06d106
06d106

When using identity pre-rendering configuration scripts, you can

06d106
extend both image-based and text-based pre-rendering configuration
06d106
scripts using image-based and text-based post-rendering actions,
06d106
respectively. 
9bfd15

06d106
06d106
06d106

2.72.2.2 The <tt>`render.conf.sh'</tt> translation model

06d106
06d106

Translation pre-rendering configuration scripts take precedence before

06d106
default translation rendering action. Translation pre-rendering
06d106
actions are useful when default translation rendering action do not
06d106
fit itself to translation entry rendering requirements.
632e8b

06d106
06d106
06d106

2.72.2.3 The <tt>`render.conf.sh'</tt> rendering actions

06d106
06d106

Inside both image-based and text-based identity pre-rendering

06d106
configuration scripts, we use the <samp>`ACTIONS'</samp> array variable to
06d106
define the way centos-art.sh script performs identity
06d106
rendering.  Identity rendering is organized by one <samp>`BASE'</samp> action,
06d106
and optional <samp>`POST'</samp> and <samp>`LAST'</samp> rendering actions.
632e8b

06d106

The <samp>`BASE'</samp> action specifies what kind of rendering does the

06d106
centos-art.sh script will perform with the files related to
06d106
the pre-rendering configuration script. The <samp>`BASE'</samp> action is
06d106
required. Possible values to <samp>`BASE'</samp> action are either
06d106
<samp>`renderImage'</samp> or <samp>`renderText'</samp> only.
632e8b

06d106

To specify the <samp>`BASE'</samp> action you need to set the <samp>`BASE:'</samp>

06d106
string followed by one of the possible values. For example, if you
06d106
want to render images, consider the following definition of
06d106
<samp>`BASE'</samp> action:
632e8b

06d106
ACTIONS[0]='BASE:renderImage'
06d106
06d106

Only one <samp>`BASE'</samp> action must be specified. If more than one

06d106
<samp>`BASE'</samp> action is specified, the last one is used. If no
06d106
<samp>`BASE'</samp> action is specified at all, an error is triggered and the
06d106
centos-art.sh script ends its execution.
632e8b

06d106

The <samp>`POST'</samp> action specifies which action to apply for

06d106
each file rendered (at the rendering time). This action is optional.
06d106
You can set many different <samp>`POST'</samp> actions to apply many different
06d106
actions over the same already rendered file. Possible values to
06d106
<samp>`POST'</samp> action are <samp>`renderFormats'</samp>, <samp>`renderSyslinux'</samp>,
06d106
<samp>`renderGrub'</samp>, etc. 
632e8b

06d106

To specify the <samp>`POST'</samp> action, you need to use set the

06d106
<samp>`POST:'</samp> followed by the function name of the action you want to
06d106
perform.  The exact form depends on your needs. For example, consider
06d106
the following example to produce <samp>`xpm'</samp>, <samp>`jpg'</samp>, and
06d106
<samp>`tif'</samp> images, based on already rendered <samp>`png'</samp> image, and
06d106
also organize the produced files in directories named as their own
06d106
extensions:
632e8b

06d106
ACTIONS[0]='BASE:renderImage'
06d106
ACTIONS[1]='POST:renderFormats: xpm jpg tif'
06d106
ACTIONS[2]='POST:groupByFormat: png xpm jpg tif'
06d106
06d106

In the previous example, file organization takes place at the moment

06d106
of rendering, just after producing the <samp>`png'</samp> base file and before
06d106
going to the next file in the list of files to render. If you don't
06d106
want to organized the produced files in directories named as their own
06d106
extensions, just remove the <samp>`POST:groupByFormat'</samp> action line:
632e8b

06d106
ACTIONS[0]='BASE:renderImage'
06d106
ACTIONS[1]='POST:renderFormats: xpm jpg tif'
06d106
06d106

The <samp>`LAST'</samp> action specifies which actions to apply once the last

06d106
file in the list of files to process has been rendered. The
06d106
<samp>`LAST'</samp> action is optional. Possible values for <samp>`LAST'</samp>
06d106
actions may be <samp>`groupByFormat'</samp>, <samp>`renderGdmTgz'</samp>, etc.
632e8b

06d106
info

Note

-- Removed(xref:trunk Scripts Bash Functions Render) --, to know more

06d106
about possible values for <samp>`BASE'</samp>, <samp>`POST'</samp> and <samp>`LAST'</samp>
06d106
action definitions.
06d106

06d106
06d106

To specify the <samp>`LAST'</samp> action, you need to set the <samp>`LAST:'</samp>

06d106
string followed by the function name of the action you want to
06d106
perform.  For example, consider the following example if you want to
06d106
render all files first and organize them later:
632e8b

06d106
ACTIONS[0]='BASE:renderImage'
06d106
ACTIONS[1]='POST:renderFormats: xpm jpg tif'
06d106
ACTIONS[2]='LAST:groupByformat: png xpm jpg tif'
06d106
06d106
06d106
06d106

2.72.3 Usage

06d106
06d106

Use the following commands to administer both identity and translation

06d106
pre-rendering configuration scripts:
632e8b

06d106
06d106
<samp>`centos-art config --create='path/to/dir/''</samp>
06d106
06d106

Use this command to create <samp>`path/to/dir'</samp> related pre-rendering

06d106
configuration script.
632e8b

9bfd15
06d106
<samp>`centos-art config --edit='path/to/dir/''</samp>
06d106
06d106

Use this command to edit <samp>`path/to/dir'</samp> related pre-rendering

06d106
configuration script.  
632e8b

632e8b
06d106
<samp>`centos-art config --read='path/to/dir/''</samp>
06d106
06d106

Use this command to read <samp>`path/to/dir'</samp> related pre-rendering

06d106
configuration script.  
632e8b

06d106
06d106
<samp>`centos-art config --remove='path/to/dir/''</samp>
06d106
06d106

Use this command to remove <samp>`path/to/dir'</samp> related pre-rendering

06d106
configuration script.
632e8b

632e8b
632e8b
632e8b
06d106

In the commands above, <samp>`path/to/dir'</samp> refers to one renderable

06d106
directory path under <tt>`trunk/Identity'</tt> or
06d106
<tt>`trunk/Translations'</tt> structures only. 
9bfd15

9bfd15
06d106
632e8b

2.72.4 See also

632e8b
632e8b
06d106
2.62 The <tt>`trunk/Scripts/Bash'</tt> Directory  
632e8b
632e8b
632e8b
632e8b
632e8b
06d106
[ < ]
06d106
[ > ]
632e8b
   
632e8b
[ << ]
06d106
[ Up ]
06d106
[ >> ]
632e8b
632e8b

632e8b
 <font size="-1">
949b9b
  This document was generated on March, 11 2011 using texi2html 1.76.
632e8b
 </font>
632e8b
 
632e8b
632e8b

632e8b
</body>
632e8b
</html>