Blame Manuals/en/Html/Repository/repository_46.html

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

3.43 trunk/Scripts/Bash/Functions/Render/Config

cb2a5d
300762
01b527
fe989b

3.43.1 Goals

fe989b
c489c0

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

c489c0
pre-rendering configuration scripts.
c489c0

915635
01b527
008ee0

3.43.2 Description

915635
c489c0

Pre-rendering configuration scripts let you customize the way

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

c489c0

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

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

4224f4
aaa0e9
c489c0

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

4224f4
c489c0

Inside CentOS Artwork Repository, we consider identity entries to all

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

c489c0

Inside identity pre-rendering configuration scripts, image-based

c489c0
pre-rendering configuration scripts look like the following:
c489c0

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

Inside identity pre-rendering configuration scripts, text-based

c489c0
pre-rendering configuration scripts look like the following:
c489c0

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

When using identity pre-rendering configuration scripts, you can

c489c0
extend both image-based and text-based pre-rendering configuration
c489c0
scripts using image-based and text-based post-rendering actions,
c489c0
respectively. 
c489c0

4224f4
aaa0e9
c489c0

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

c489c0
c489c0

Translation pre-rendering configuration scripts take precedence before

c489c0
default translation rendering action. Translation pre-rendering
c489c0
actions are useful when default translation rendering action do not
c489c0
fit itself to translation entry rendering requirements.
c489c0

c489c0
c489c0
c489c0

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

c489c0
c489c0

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

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

c489c0

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

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

c489c0

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

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

c489c0
ACTIONS[0]='BASE:renderImage'
c489c0
c489c0

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

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

c489c0

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

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

c489c0

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

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

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

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

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

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

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

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

c489c0
info

Note

See section trunk/Scripts/Bash/Functions/Render, to know more

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

c489c0
c489c0

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

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

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

3.43.3 Usage

c489c0
c489c0

Use the following commands to administer both identity and translation

c489c0
pre-rendering configuration scripts:
c489c0

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

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

c489c0
configuration script.
c489c0

c489c0
c489c0
<samp>`centos-art config --edit='path/to/dir/''</samp>
c489c0
c489c0

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

c489c0
configuration script.  
c489c0

c489c0
c489c0
<samp>`centos-art config --read='path/to/dir/''</samp>
c489c0
c489c0

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

c489c0
configuration script.  
c489c0

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

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

c489c0
configuration script.
c489c0

c489c0
c489c0
c489c0
c489c0

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

c489c0
directory path under <tt>`trunk/Identity'</tt> or
c489c0
<tt>`trunk/Translations'</tt> structures only. 
c489c0

c489c0
c489c0
4c79b5

3.43.4 See also

4c79b5
54b5a5
c489c0
3.36 trunk/Scripts/Bash  
c489c0
c489c0
3.37 trunk/Scripts/Bash/Functions  
c489c0
c489c0
3.42 trunk/Scripts/Bash/Functions/Render  
035049
54b5a5
4c79b5
4c79b5
4c79b5
c489c0
[ < ]
c489c0
[ > ]
4c79b5
   
4c79b5
[ << ]
01b527
[ Up ]
c489c0
[ >> ]
4c79b5
4c79b5

4c79b5
 <font size="-1">
92fb7f
  This document was generated on January, 5 2011 using texi2html 1.76.
4c79b5
 </font>
4c79b5
 
4c79b5
4c79b5

4c79b5
</body>
4c79b5
</html>