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

4c79b5
4c79b5
<html>
09d4f2
09d4f2
09d4f2
The CentOS Artwork Repository exists to organize and automate The
09d4f2
CentOS Project corporate visual identity (, to
09d4f2
start on).
4c79b5
6c4982
Copyright C 2009, 2010 Alain Reguera Delgado. All rights
4c79b5
reserved.
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
-->
008ee0
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>
b0644c
<title>CentOS Artwork Repository: 3.44 trunk/Scripts/Bash/Functions/Shell</title>
4c79b5
b0644c
<meta name="description" content="CentOS Artwork Repository: 3.44 trunk/Scripts/Bash/Functions/Shell">
b0644c
<meta name="keywords" content="CentOS Artwork Repository: 3.44 trunk/Scripts/Bash/Functions/Shell">
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
3d6160
[ < ]
3d6160
[ > ]
4c79b5
   
4c79b5
[ << ]
4c79b5
[ Up ]
b0644c
[ >> ]
4c79b5
   
4c79b5
   
4c79b5
   
4c79b5
   
4c79b5
[Top]
4c79b5
[Contents]
b0644c
[Index]
4c79b5
[ ? ]
4c79b5
b0644c
3d6160
b0644c

3.44 trunk/Scripts/Bash/Functions/Shell

008ee0
ef356a
3d6160
54b5a5

3.44.1 Goals

54b5a5
b0644c

This section exists to organize files related to shell

63f275
functionality of <tt>`centos-art.sh'</tt> script.
63f275

008ee0
3d6160
54b5a5

3.44.2 Description

54b5a5
b0644c

The shell functionality of <tt>`centos-art.sh'</tt> script helps

b0644c
you to maintain bash scripts inside repository. For example, suppose
b0644c
you've created many functionalities for <tt>`centos-art.sh'</tt> script,
b0644c
and you want to use a common copyright and license note for
b0644c
consistency in all your script files. If you have a bunch of files,
b0644c
doing this one by one wouldn't be a big deal. In contrast, if the
b0644c
amount of files grows, updating the copyright and license note for all
b0644c
of them would be a task rather tedious. The shell functionality
b0644c
exists to solve maintainance tasks just as the one previously
b0644c
mentioned.
60c152

b0644c

When you use shell functionality to update copyright inside

b0644c
script files, it is required that your script files contain (at least)
b0644c
the following top commentary structure:
63f275

b0644c
 1| #!/bin/bash
b0644c
 2| #
b0644c
 3| # doSomething.sh -- The function description goes here.
b0644c
 4| # 
b0644c
 5| # Copyright
b0644c
 6| #
b0644c
 7| # ...
b0644c
 8| #
b0644c
 9| # ----------------------------------------------------------------------
b0644c
10| # $Id$
b0644c
11| # ----------------------------------------------------------------------
b0644c
12|
b0644c
13| function doSomething {
b0644c
14|     
b0644c
15| }
b0644c
b0644c

Relevant lines in the above structure are lines from 5 to 9.

b0644c
Everything else in the file is left immutable.
63f275

b0644c

When you are updating copyright through shell

b0644c
functionality,  the <tt>`centos-art.sh'</tt> script replaces everything
b0644c
in-between line 5 --the first one matching <samp>`^# Copyright .+$'</samp>
b0644c
string-- and line 9--the first long dash separator matching <samp>`^#
b0644c
-+$'</samp>-- with the content of copyright template instance.
3d6160

b0644c
Caution

Caution

Be sure to add the long dash separator that matches

b0644c
<samp>`^# -+$'</samp> regular expression before the function
b0644c
definition. Otherwise, if the <samp>`Copyright'</samp> line is present but no
b0644c
long dash separator exists, <tt>`centos-art.sh'</tt> will remove anything
b0644c
in-between the <samp>`Copyright'</samp> line and the end of file. This way you
b0644c
may lost your function definitions entirely.
b0644c

b0644c
b0644c

The copyright template instance is created from one copyright template

b0644c
stored in the <tt>`Config/tpl_forCopyright.sed'</tt> file.  The template
b0644c
instance is created once, and later removed when no longer needed. At
b0644c
this moment, when template instance is created, the
b0644c
<tt>`centos-art.sh'</tt> script takes advantage of automation in order to
b0644c
set copyright full name and date dynamically.
63f275

b0644c

When you use shell functionality to update copyright, the first

b0644c
thing <tt>`shell'</tt> functionality does is requesting copyright
b0644c
information to user, and later, if values were left empty (i.e., no
b0644c
value was typed before pressing RET key), the <tt>`shell'</tt>
b0644c
functionality uses its own default values.
63f275

b0644c

When shell functionality uses its own default values, the final

b0644c
copyright note looks like the following:
e68a7a

b0644c
 1| #!/bin/bash
b0644c
 2| #
b0644c
 3| # doSomthing.sh -- The function description goes here.
b0644c
 4| #
b0644c
 5| # Copyright (C) 2003, 2010 The CentOS Project
b0644c
 6| # 
b0644c
 7| # This program is free software; you can redistribute it and/or modify
b0644c
 8| # it under the terms of the GNU General Public License as published by
b0644c
 9| # the Free Software Foundation; either version 2 of the License, or
b0644c
10| # (at your option) any later version.
b0644c
11| # 
b0644c
12| # This program is distributed in the hope that it will be useful, but
b0644c
13| # WITHOUT ANY WARRANTY; without even the implied warranty of
b0644c
14| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
b0644c
15| # General Public License for more details.
b0644c
16| #
b0644c
17| # You should have received a copy of the GNU General Public License
b0644c
18| # along with this program; if not, write to the Free Software
b0644c
19| # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
b0644c
20| # USA.
b0644c
21| #
b0644c
22| # ----------------------------------------------------------------------
b0644c
23| # $Id$
b0644c
24| # ----------------------------------------------------------------------
b0644c
25|
b0644c
26| function doSomething {
b0644c
27|
b0644c
28| }
b0644c
b0644c

Relevant lines in the above structure are lines from 5 to 22. Pay

b0644c
attention how the copyright line was built, and how the license was
b0644c
added into the top comment where previously was just three dots.
b0644c
Everything else in the file was left immutable. 
60c152

b0644c

To change copyright information (i.e., full name or year information),

b0644c
run the shell functionality over the root directory containing
b0644c
the script files you want to update copyright in and enter the
b0644c
appropriate information when it be requested. You can run the
b0644c
shell functionality as many times as you need to.
60c152

b0644c

To change copyright license (i.e., the text in-between lines 7 and

b0644c
20), you need to edit the <tt>`Config/tpl_forCopyright.sed'</tt> file, set
b0644c
the appropriate information, and run the shell functionality
b0644c
once again for changes to take effect over the files you specify.
3d6160

b0644c
Important

Important

The <tt>`centos-art.sh'</tt> script is released as:

3d6160

b0644c
GNU GENERAL PUBLIC LICENSE
b0644c
Version 2, June 1991
e68a7a
b0644c
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
b0644c
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
b0644c
b0644c

Do not change the license information under which <tt>`centos-art.sh'</tt>

b0644c
script is released. Instead, if you think a different license must be
b0644c
used, please share your reasons at CentOS Developers mailing list.
b0644c

60c152
3d6160
b0644c
008ee0

3.44.3 Usage

008ee0
63f275
b0644c
centos-art sh --update-copyright='path/to/dir'
b0644c
centos-art sh --update-copyright='path/to/dir' --filter='regex'
b0644c

Use these commands to update copyright information in <samp>`.sh'</samp> files

b0644c
under <samp>`path/to/dir'</samp> directory. 
63f275

63f275
2c8180
63f275

When you provide <samp>`--filter='regex''</samp> argument, the list of files

63f275
to process is reduced as specified in <samp>`regex'</samp> regular expression.
63f275
Inside <tt>`centos-art.sh'</tt> script, the <samp>`regex'</samp> regular
63f275
expression is used in combination with find command to look
63f275
for files matching the regular expression path pattern.
63f275

63f275
Warning

Warning

In order for <samp>`regex'</samp> regular expression to match

63f275
a file, the <samp>`regex'</samp> regular expresion must match the whole file
63f275
path not just the file name. 
63f275

2c8180
b0644c

For example, if you want to match all <tt>`render.conf.sh'</tt> files

b0644c
inside <tt>`path/to/dir'</tt>, use the .+/render.conf regular
b0644c
expression.  Later, <tt>`centos-art.sh'</tt> script uses this value inside
b0644c
^$REGEX\.sh$ expression in order to build the final regular
b0644c
expression (i.e., ^.+/render.conf\.sh$) that is evaluated
b0644c
against available file paths inside the list of files to process.
63f275

63f275

Exceptionally, when you provide <samp>`--filter='regex''</samp> in the way

63f275
that <samp>`regex'</samp>, appended to <samp>`path/to/dir/'</samp> (i.e.
63f275
<samp>`path/to/dir/regex'</samp>), matches a regular file; the
63f275
<tt>`centos-art.sh'</tt> script uses the file matching as only file in the
63f275
list of files to process. 
63f275

63f275
b0644c
4c79b5

3.44.4 See also

4c79b5
2c8180
63f275
3.36 trunk/Scripts/Bash  
63f275
63f275
3.37 trunk/Scripts/Bash/Functions  
2c8180
2c8180
4c79b5
4c79b5
4c79b5
b0644c
[ < ]
b0644c
[ > ]
4c79b5
   
4c79b5
[ << ]
3d6160
[ Up ]
b0644c
[ >> ]
4c79b5
4c79b5

4c79b5
 <font size="-1">
008ee0
  This document was generated on December, 2 2010 using texi2html 1.76.
4c79b5
 </font>
4c79b5
 
4c79b5
4c79b5

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