9 artemus - Herramienta de sustitución de texto y más cosas
14 artemus -i|--input={input file} -o|--output={output file}
15 [-c|--conf={config file}]
16 [-p|--paragraph={paragraph_separator}]
17 [-m|--msdos] [-a|--append]
20 artemus -f|--ftp {files to ftp...}
22 # crea un makefile típico para proyectos web
23 artemus -k|--makefile > Makefile
25 # construye una página con el mapa del sitio
26 artemus -s|--site-map {directories} > sitemap/index.artemus
30 B<artemus> es una herramienta que permite efectuar sustituciones en ficheros
31 de texto (pensado fundamentalmente para preprocesar HTML). Las macros se
32 definen en el fichero F<artemus.conf>, en la forma B<clave=valor>, siendo
33 B<valor> el texto destino, que puede incluir parámetros. La forma de incluir
34 la macro en el fichero origen es incluir la B<clave> entre las marcas
35 B<{-> y B<}>. Los (posibles) parámetros se separarán de la B<clave> mediante
40 En el fichero F<artemus.conf>:
42 # varias definiciones simples
43 Perl=<a href="http://www.perl.com">Perl</a>
44 LWN=<a href="http://www.lwn.net">Linux Weekly News</a>
45 separator=<br><hr><br>
46 head=<html><body bgcolor=ffffff>
48 # definiciones con parámetros
50 link=<a href="http://$1">$0</a>
52 meta=<meta name="$1" content="$0">
53 # enlace usando la macro link
54 CPAN={-link|CPAN|www.cpan.org}
56 En un fichero origen F<index.artemus>:
59 {-meta|links, free software|keywords}
65 <li>{-link|kernel.org|www.kernel.org}
71 artemus -i index.artemus -o index.html
73 se obtiene el fichero F<index.html>:
75 <html><body bgcolor=ffffff>
76 <meta name="keywords" content="links, free software">
79 <li><a href="http://www.perl.com">Perl</a>
80 <li><a href="http://www.lwn.net">Linux Weekly News</a>
81 <li><a href="http://www.cpan.org">CPAN</a>
82 <li><a href="http://www.kernel.org">kernel.org</a>
86 El parámetro I<--paragraph> permite definir la cadena que sustituirá a cada
87 línea en blanco. Así, si se define como <p>, se pueden crear ficheros HTML
88 separando cada párrafo con sólo una línea en blanco, pues B<artemus> añadirá
91 El parámetro I<--msdos> crea los fines de línea típicos de MSDOS CR+LF.
93 El parámetro I<--append> añade la salida al fichero destino en lugar de
96 El parámetro I<--makefile> genera un makefile típico para proyectos HTML
97 basados en artemus (incluyendo reglas para construcción y envío ftp). Debe
98 ser modificado para adaptarse a las necesidades del proyecto.
100 El parámetro I<--site-map> recorre los directorios enviados como argumento
101 en busca de ficheros HTML y envía a la salida estándar un fichero con el
102 mapa del sitio. Crea como cabecera y pie las marcas B<artemus> especiales
103 B<site-map-head> y B<site-map-foot>, que deberán estar definidas en
104 F<artemus.conf>. Una definición típica sería:
106 site-map-head={-head|Site Map}
107 site-map-foot={-foot}
111 B<artemus> incluye, desde la versión 2.04, la capacidad de enviar por ftp al
112 servidor definido en F<artemus.conf> los ficheros enviados como argumento. Para
113 ello, hay que crear en dicho fichero de configuración las siguientes
118 ftp.passwd=<palabra clave>
119 ftp.dir=<directorio destino (opcional)>
121 Debe tenerse en cuenta que, al incluir la clave de acceso, el fichero
122 F<artemus.conf> se hace sensible a posibles mirones.
126 (C) Angel Ortega <angel@triptico.com> 2000/2001
132 artemus - Text substitution tool and much more
137 artemus -i|--input={input file} -o|--output={output file}
138 [-c|--conf={config file}]
139 [-p|--paragraph={paragraph_separator}]
140 [-m|--msdos] [-a|--append]
143 artemus -f|--ftp {files to ftp...}
145 # creates a template makefile for html projects
146 artemus -k|--makefile > Makefile
148 # builds a site map page
149 artemus -s|--site-map {Directories} > sitemap/index.artemus
153 B<artemus> is a text substitution tool (thought mainly for preprocessing HTML).
154 Macros are defined in the file F<artemus.conf>, in the form B<key=value>,
155 being B<value> the destination text, that can have parameters. The macro is
156 included in the source file between the B<{-> and B<}> marks. The (possible)
157 parameters are delimited by the B<|> symbol.
161 In F<artemus.conf> file:
163 # some simple definitions
164 Perl=<a href="http://www.perl.com">Perl</a>
165 LWN=<a href="http://www.lwn.net">Linux Weekly News</a>
166 separator=<br><hr><br>
167 head=<html><body bgcolor=ffffff>
169 # definitions with parameters
171 link=<a href="http://$1">$0</a>
173 meta=<meta name="$1" content="$0">
174 # link using the link macro
175 CPAN={-link|CPAN|www.cpan.org}
177 In a source file F<index.artemus>:
180 {-meta|links, free software|keywords}
186 <li>{-link|kernel.org|www.kernel.org}
192 artemus -i index.artemus -o index.html
194 you obtain the file F<index.html>:
196 <html><body bgcolor=ffffff>
197 <meta name="keywords" content="links, free software">
200 <li><a href="http://www.perl.com">Perl</a>
201 <li><a href="http://www.lwn.net">Linux Weekly News</a>
202 <li><a href="http://www.cpan.org">CPAN</a>
203 <li><a href="http://www.kernel.org">kernel.org</a>
207 The I<--paragraph> argument let us define a string to substitute the empty
208 lines in the document. If defined as <p>, you can create HTML documents
209 separating the paragraphs with only a blank line, as B<artemus> will fill
212 The I<--msdos> argument creates the typical MSDOS end of line, CR+LF.
214 The I<--append> argument appends the output to destination file, instead
217 The I<--makefile> argument creates a typical makefile for artemus-based
218 HTML projects (including building and ftp-uploading rules). You must
219 modify it to suit your needs.
221 The I<--site-map> argument walks the directories sent as arguments searching
222 for HTML files and sends to standard output the map of the site. As header
223 and footer it creates the special B<artemus> tags B<site-map-head> and
224 B<site-map-foot>, that must be defined in F<artemus.conf>. A typical
227 site-map-head={-head|Site Map}
228 site-map-foot={-foot}
232 B<artemus> includes, since version 2.04, ftp capabilities to send the files
233 specified as arguments to a server defined in F<artemus.conf>. The entries
234 in this file must be:
239 ftp.dir=<destination directory (optional)>
241 Note that including this information in F<artemus.conf> makes it
246 (C) Angel Ortega <angel@triptico.com> 2000/2001