Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

templatespp(1) [debian man page]

TEMPLATESPP1(1) 					   Templates Parser User's Guide					   TEMPLATESPP1(1)

NAME
templatespp - preprocessor based on templates parser SYNOPSIS
templatespp [-o file] file DESCRIPTION
templatespp is a pre-processor based on the template parser. It is generally used from scripts to process files and generate other files. One of the possible uses, for instance, is to write the CSS (style-sheet) of a web site as a template file (for instance `mycss.tcss'), and use template parser structures in there. This is a good way to share colors for instance, or to name constants, as is often done in Ada code. Here is a small example of such a CSS: @@SET@@ COLOR1=blue @@SET@@ COLOR2=red @@SET@@ LENGTH1=10 body {background:@_COLOR1_@} div {background:@_COLOR2_@} ul.class {background:@_COLOR1_@} /* same color as body */ ul {width:@_ADD(3):LENGTH1_@px} /* ul 3 pixels wider than li */ li {width:@_LENGTH1_@px} Such a file would be processed with the following command line: templatespp -o mycss.css mycss.tcss OPTIONS
-h Display a summary of options. -o file Write the output to file. SEE ALSO
templates2ada(1) The Template Parsers User's Guide in package libtemplates-parser-dev. AUTHOR
templatespp was written by Pascal Obry <p.obry@wanadoo.fr> as part of the Ada Web Server. This manual page was written by Ludovic Brenta <lbrenta@debian.org> for Debian GNU/Linux. GNU Ada Tools 2008-05-04 TEMPLATESPP1(1)

Check Out this Related Man Page

ASISTANT(1)							    ASIS Tools							       ASISTANT(1)

NAME
asistant - interactive command-line ASIS tool SYNOPSIS
asistant program DESCRIPTION
ASIS is the Ada Semantic Interface Specification; it is an application programming interface that allows Ada programs to inspect the struc- ture of other Ada programs. GNAT, the GNU Ada compiler, can parse Ada source text and produce tree files suitable for use through ASIS. asistant is an interactive command-line tool with a simple language that allows you to inspect the semantic information about a compiled program. Thus you can learn ASIS and try ASIS queries interactively before writing them in your programs. AUTHOR
ASIS-for-GNAT was originally developed by the ASIS-for-GNAT team at the Software Engineering Laboratory of the Swiss Federal Insti- tute of Technology (LGL-EPFL) in Lausanne, Switzerland, in cooperation with the Scientific Research Computer Center of Moscow State University (SRCC MSU), Russia, with funding partially provided by grants from the Swiss National Science Foundation and the Swiss Academy of Engineering Sciences. ASIS-for-GNAT is now maintained by AdaCore (http://www.adacore.com). This manual page was written by Ludovic Brenta <ludovic@ludovic-brenta.org> for the Debian project, COPYRIGHT
Copyright (c) 1995-2006, Free Software Foundation, Inc. SEE ALSO
gnat(1), gnatcheck(1), gnatelim(1), gnatmetric(1), gnatpp(1), gnatstub(1) A short introduction to asistant in /usr/share/doc/libasis-dev/tutorial/using_asistant/README info asis_ug ASIS-for-GNAT User's Guide, provided by by package libasis-doc in the Info system, and in text, PDF and HTML formats in /usr/share/doc/libasis-doc. (asis-doc is in the non-free sec- tion of Debian). info asis_rm ASIS-for-GNAT Reference Manual, same package. GNU Ada Tools May 2006 ASISTANT(1)
Man Page

2 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

hell & mathematics

I've been able to generate output based on the code scarfake provided me (thanks again man). A little background so everyone more or less knows whats going on: I needed code that would propagate a database with 100,000 entries, for capacity testing purposes, something like a stress test. ... (5 Replies)
Discussion started by: ogoy
5 Replies

2. Shell Programming and Scripting

Using variables in funcion substr.

Hello.. every body... i hope you can helo me with this small code. I need to substraction a one part of the string...i try to do with this code: cat $TSMINCLUDE | while read c do l=${#c} if ]; then long=$((l-5)) else long=$((l-6)) fi fs=`echo $c | awk... (5 Replies)
Discussion started by: odette.delfin
5 Replies