.----------------------------------------------------------------- .- htmlpp.txt htmlpp documentation source .- .define author Pieter Hintjens .define written 07 Feb 1998 .define revised &date("d mmm, yyyy") .- vht is set in the environment, e.g. to 42a .define version_no %(vht) .define version = substr("$(version_no)",0,1).".".substr("$(version_no)",1) .- .- Copyright: (c) 1996-98 iMatix .- .- This file is the original source for the htmlpp documentation. .- Whenever I need to change the documentation, I edit this file, .- then run htmlpp to re-create the set of web pages. .- .- The BASE variable tells htmlpp what to call the output files. .- Here, the files will be index.htm, index1.htm, index2.htm... .- .define BASE index .- .- The prelude.def file centralises various definitions that I .- don't want to clutter-up this file with. This is just one of .- my habits. Macros.def defines various useful macros. .- .include macros.def .include prelude.def .----------------------------------------------------------------- .ignore header .page htmlpp - The HTML Preprocessor .H1 $(TITLE) .- This file builds a table of contents for the current document, .- i.e. all the pages that result from this original text file. .- .include contents.def
An article in the $(*linuxjnl=December 1997 issue of Linux Journal) describes htmlpp, and is a good introduction to this tool.
What is htmlpp?
What does htmlpp do?
How do I use htmlpp?
Where do I get htmlpp?
What else should I know?
What Are The Alternatives?
Make sure your PERLLIB environmental variable is set, e.g.:
$ echo $PERLLIB /usr/lib/perl5
This is the path where the Perl interpreter can find standard Perl libraries. If you see a blank line after the echo command, then your PERLLIB environmental (shell) variable is not set. For Perl 5 distributions, the default PERLLIB path is /usr/lib/perl5. It is a good idea just to put the assignment of the PERLLIB variable into your login command file. See the appropriate man page for your shell for more information.
Then:
mkdir /usr/local/htmlpp
cp htmlpp.X /usr/local/htmlpp
Archive: Extract using: -------- -------------- htmlpp.tgz tar zxvf htmlpp.tgz htmlpp.zip unzip -a htmlpp.zip
cp /usr/local/htmlpp/*.pl $PERLLIB/Run the htmlpp command with no arguments and you will see the following ouput:
Htmlpp - a HTML pre-processor V$(version) This is free software and may be freely modified and distributed. Copyright (c) 1996-98 iMatix Corporation - http://www.imatix.com syntax: htmlpp [-debug] [-guru] [-env] [-nofunc] [-page list] [-set name=value] [-charset value] <filename>... -debug Leave work files: useful for debugging macros and loops -guru Work in Guru Mode -env Load all environment variables into document symbol table -nofunc Ignore unknown intrinsic functions (&xxx) -page Produce only specified pages; list can take any of these forms: 'nn', 'nn-nn', 'nn,nn,nn'. E.g. -page 1 -page 3,7 You can also refer to output filenames: -page index3.htm -set Set symbol value. This override any default settings or settings made from within the htmlpp input. -charset Define the character set for the source input. Valid values are 'iso-8859-1' and 'ms-dos'.
If you see an error message such as the following:
Can't locate sflcvdp.pl in @INC (@INC contains: /usr/lib/perl5/i586-linux/5.00404 /usr/lib/perl5 /usr/lib/perl5/site_perl/i586-linux /usr/lib/perl5/site_perl .) at /usr/local/bin/htmlpp line 26.
This means that the Perl interpreter cannot find a file specified by the 'require' command in the @INC path. Make sure you have copied all the *.pl files from the htmlpp directory into $PERLLIB and that the PERLLIB shell variable is set to this path. .H3 Installation Under MS-DOS
Htmlpp - a HTML pre-processor V$(version) This is free software and may be freely modified and distributed. Copyright (c) 1996-98 iMatix Corporation - http://www.imatix.com syntax: htmlpp [-debug] [-guru] [-env] [-nofunc] [-page list] [-set name=value] [-charset value] <filename>... -debug Leave work files: useful for debugging macros and loops -guru Work in Guru Mode -env Load all environment variables into document symbol table -nofunc Ignore unknown intrinsic functions (&xxx) -page Produce only specified pages; list can take any of these forms: 'nn', 'nn-nn', 'nn,nn,nn'. E.g. -page 1 -page 3,7 You can also refer to output filenames: -page index3.htm -set Set symbol value. This override any default settings or settings made from within the htmlpp input. -charset Define the character set for the source input. Valid values are 'iso-8859-1' and 'ms-dos'.
Htmlpp - a HTML pre-processor V$(version) This is free software and may be freely modified and distributed. Copyright (c) 1996-98 iMatix Corporation - http://www.imatix.com syntax: htmlpp [-debug] [-guru] [-env] [-nofunc] [-page list] [-set name=value] [-charset value] <filename>... -debug Leave work files: useful for debugging macros and loops -guru Work in Guru Mode -env Load all environment variables into document symbol table -nofunc Ignore unknown intrinsic functions (&xxx) -page Produce only specified pages; list can take any of these forms: 'nn', 'nn-nn', 'nn,nn,nn'. E.g. -page 1 -page 3,7 You can also refer to output filenames: -page index3.htm -set Set symbol value. This override any default settings or settings made from within the htmlpp input. -charset Define the character set for the source input. Valid values are 'iso-8859-1' and 'ms-dos'.
The template.zip file that is supplied with htmlpp contains the basis for a new project. Unzip this file into a working directory. You'll find:
As a start, run htmlpp on template.txt:
C:\SOMEDIR\>htmlpp template.txt
This creates a set of HTML files. You can open index.htm with a browser, and the links should work.
Htmlpp creates a file called errors.lst which contains any errors. This file is useful if you are building really large documentation kits, and messages scroll off the screen. .----------------------------------------------------------------- .page Htmlpp Reference .H2 $(TITLE) .H3 Description
Htmlpp is a preprocessor for HTML files, and is intended to simplify the task of maintaining large sets of HTML documents. You provide htmlpp with a document that is a mix of HTML-tagged text and htmlpp commands. Htmlpp generates a set of HTML files from that document. .H3 Command-line Syntax
To run htmlpp, use the following syntax:
htmlpp [-option...] filename ...
Where filename is assumed to have an extension '.htp' if necessary. You can use these command-line options:
htmlpp -page 1 xxxxYou can generate a series of specific pages too:
htmlpp -page 1,9-10,15 xxxxYou can also refer to page file names, instead of page numbers (but not using the 'nn-nn' syntax:
htmlpp -page justhis.htm,andthat.htm xxxx
-set name=valueFor example,
htmlpp -set BASE=temp myfile.txtUnder DOS, you must enclose name=value in quotes, e.g.:
htmlpp -set "BASE=temp" myfile.txt
All command line options can be shortned to their significant letters, e.g. '-d' is the same as '-debug'. .H3 Inserting Symbols
Htmlpp replaces symbols in command lines and HTML text. You can specify a symbol in various ways:
<A HREF="$\(name)">name</A>.If the symbol is not defined and the multilingual symbols option is turned on, it will also search for the symbol name.xx where xx is the current language code. Also, if name already includes a language code (e.g. $\(*home.es)) which is different from the current language and the multilingual symbols option is turned on, the HTML 4.0 "hreflang=xx" attribute is automatically added in the <A...> tag.
<A HREF="$\(name)" attributes>name</A>.If the symbol is not defined and the multilingual symbols option is turned on, it will also search for the symbol name.xx where xx is the current language code. Also, if name already includes a language code (e.g. $\(*home.es)) that is different from the current language and the multilingual symbols option is turned on, the HTML 4.0 "hreflang=xx" attribute is automatically added in the <A...> tag.
<A HREF="$\(name)">label</A>.If the symbol is not defined and the multilingual symbols option is turned on, it will also search for the symbol name.xx where xx is the current language code. Also, if name already includes a language code (e.g. $\(*home.es)) that is different from the current language and the multilingual symbols option is turned on, the HTML 4.0 "hreflang=xx" attribute is automatically added in the <A...> tag.
<A HREF="$\(name)" attributes>label</A>.If the symbol is not defined and the multilingual symbols option is turned on, it will also search for the symbol name.xx where xx is the current language code. Also, if name already includes a language code (e.g. $\(*home.es)) that is different from the current language and the multilingual symbols option is turned on, the HTML 4.0 "hreflang=xx" attribute is automatically added in the <A...> tag.
<A HREF="$\(name)">$\(name)</A>.If the symbol is not defined and the multilingual symbols option is turned on, it will also search for the symbol name.xx where xx is the current language code. Also, if name already includes a language code (e.g. $\(*home.es)) that is different from the current language and the multilingual symbols option is turned on, the HTML 4.0 "hreflang=xx" attribute is automatically added in the <A...> tag.
<A HREF="$\(name)" attributes>$\(name)</A>.If the symbol is not defined and the multilingual symbols option is turned on, it will also search for the symbol name.xx where xx is the current language code. Also, if name already includes a language code (e.g. $\(*home.es)) that is different from the current language and the multilingual symbols option is turned on, the HTML 4.0 "hreflang=xx" attribute is automatically added in the <A...> tag.
You can define symbols in terms of symbols: $\($\(name)) is quite okay, if you know what you are doing. Htmlpp inserts symbols from right to left in the line. .H3 Types of Symbol
Symbols are of various types
Htmlpp provides these standard symbols for use at any point in the document:
1 1.1 1.2 1.2.1 1.2.2 ... etc.Htmlpp automatically manages the numbering of header levels. You are, however, limited to the 'dotted number' syntax.
In addition, htmlpp will include the current environment symbols if you run it with the -env option. You can use this (although I don't see the utility immediately) to redefine any of the standard symbols such as $\(EXT). Remember that you can also access any of the environment symbols using the %\(...) syntax; e.g. %\(PATH). .H3 Htmlpp Commands
A htmlpp command starts with a dot, in column 1, followed by a keyword. You can put spaces between the dot and the keyword. To continue the command line over the next line, end the line with a hyphen (though you need to at least put the dot and the keyword on the same line. Commands can be in upper- or lower-case: .endblock and .EndBlock are equivalent.
These are the commands that htmlpp understands:
.define count = 1 \.echo $\(count) \.define count = $\(count) + 1 \.echo $\(count)Of course it helps to know that htmlpp will evaluate all variables before passing the expression to Perl to work out. So, the second .define is evaluated as '1 + 1'. If you decide to rely on Perl (a good bet for now), you can use the .define = command to execute shell commands, e.g.:
.if $\(PASS) \. define junk = system "rm *.htm"; \.endifIf you append .xx to the symbol name, where xx is a two-characters language code, you can afterwards use the variable as $\(symbol) without writting the language code, provided $\(USE_LANG)=1 and $\(LANG)=xx. You should use standardized ISO-639 $(*langcodes=language codes).
.define INC++ ""Note that the empty string is treated as zero; the next time the symbol will be '1'. You can also use '--' after the symbol name to subtract one from its value each time it is used. You can stick the '++' or '--' before the symbol name: then the symbol is incremented or decremented before its value is taken.
<H1>$\(TITLE)</H1>
.if -f myfile.htmAn .if block must be entirely in one line.
.if $\(number) == 0
.if $\(number) != 1
.if $\(number) > 2
.if $\(string) eq "value"
.if $\(string) ne "value"
.define LOCAL i:/site: \.define SERVER http://www.imatix.comThe directory must be relative to either of these two. It should start with '/' but not end with '/'. You can specify zero or more filenames or wildcards (htmlpp accepts * and ?, according to UNIX rules). If you specify no filespecs, htmlpp assumes you mean '*'. The filespecs can include PERL regular expressions: place the filespec between double quotes, e.g. to match all files with 'doc' or 'txt' somewhere in the name: .build dir /pub "doc|txt". An example might help:
.define .txt Text file \.define .htm HTML document \.define .zip ZIP archive \.block dir_open <PRE> \.block dir_entry $\(*DIR_HREF="$\(DIR_NAME)") $\(DIR_SIZE) $\($\(DIR_EXT)) \.block dir_close </PRE> \.endblockNote the sneaky double-derefencing of $\(DIR_EXT) which translates the file extension into a comment like 'Text file'. I usually stick all such .defines in a separate .include file, filetype.def.
Each query criterium is defined by four pipe-delimited fields. You can use as many criteria as you want. The fields are the
value OPERATOR database_field_value
date
, number
, or
string
on
.for row in %database "\\|" "COMMENT:" "on" "on" "$\(person)|1|=|string" \.page "$\(5)" = "$\(2) $\(3)'s Homepage" <UL> <LI>E-mail: <A href="mailto:$\(4)">$\(4)</A> <LI>Office: $\(5) [...] \.endforThen calling 'htmlpp -set person=personcode template_file' for each person will produce his personal page.
Macros are a shorthand way to produce HTML tags and other constructs. This is how I define a macro 'H3':
.macro H3 <H3>$*</H3>
I use all uppercase names for macros, but this is just a convention, since the case is not important. We can use a macro like H3 in three ways:
.H3 some text
or
<!--.H3 some text-->
or
<.H3 some text>
The first form is good for titles and other constructs that come naturally on a line by themselves. Since it uses a syntax similar to htmlpp commands, there is a certain danger that a macro will conflict with some future command. This is just too bad; the alternative of inventing yet another syntax for macros was (for me) a worse choice. In any case, htmlpp will warn you if you try to define a macro that already exists as a command. The second form is compatible with HTML editors and some other HTML preprocessors, but is frankly a pain to type. The third form is good for mark-up tags. The second and third forms suffer from one problem: the whole thing has to come on a single line.
When you use a macro like this: <.H3 some text> you are supplying arguments. Here we supply two, 'some' and 'text'. You can refer to these as $1 and $2 inside the macro definition, or together as $*. Htmlpp can handle quotes correctly, so <.H3 "some text"> only supplies one argument, $1.
The $+ symbol expands to anything left over after $1, $2, etc. For instance, if you refer to $1 and $3 in the macro body, $+ refers to $4 and any remaining arguments.
The $# symbol expands to the number of macro arguments.
You can define a macro with a section that repeats for each argument. This is useful if you don't know in advance how many arguments you are going to have. For instance, the standard \.THEAD macro generates a table heading for one, two, three, or more columns. You specify the repeating section as {...$n...}. The text between '{' and '}' is repeated for each argument; "$n" (dollar sign, small 'n') is replaced by the argument value.
To use multi-word arguments, enclose them in quotes.
When a macro refers to a variable using $\(xxx), this will be expanded as soon as the macro is expanded. Usually this is what you expect, but sometimes you need the variable to be expanded in the next pass, for instance if you generate the .define in the same pass. In this case, escape the variable: $\\(xxx).
The file macro.def that comes with htmlpp defines a set of standard macros. You can define multiline macros that include other commands, like .if and .include. .H3 Multilingual support .H4 Support For Accented Characters You can type accented characters directly, and htmlpp will do its best to convert these into HTML metacharacters. For instance, if your document contains an e-circumflex, htmlpp will replace it by the metacharacter ê.
Supported character sets are ISO-8859-1 and MS-DOS (codepage 850). In general you can use ISO-8859-1 both for Unix Latin-1 and Windows 1250. You can define the character set through the -charset command-line option or let htmlpp do a little testing of the wind to figure-out if it's running under a Unix or a DOS system (Windows testing not supported). If you use htmlpp on a Mac, or on documents encoded using another character set it won't work. Basically htmlpp handles MS-DOS accents if there is an environment variable 'COMPSPEC' defined, and ISO-8859-1 accents if there is a file called "/etc/passwd" on the system.
If you use any character which is not on ISO-8859-1 or MS-DOS CP850 you will find that it comes-out as '?' (not found). If you have the HTML metachar for the character (which must be a Unicode numeric reference rather than an entity reference if it is outside ISO-8859-1) and the octal ASCII code for the character set you are using, please send it to me. .H4 Dates Formatting Days of the week and month names in date formatting functions can be written in several languages. Current supported languages are "es" for Spanish, "dk" for Danish, and "fr" for French. If no language is specified in the formatting function the value of standard symbol $\(LANG) is used, which is "en" by default if it has not been redefined. .H4 Multilingual Variables Htmlpp allows you to add two-character "extensions" to symbols to denote the language for the symbol value. This way you don't have to remember different symbol names for each alternative language you offer in your site. When you use the symbol you don't have to specify the language if it coincides with the current value of $\(LANG). This feature only works when you activate the multiligual variable search option by defining $\(USE_LANG) to 1.
.define USE_LANG 1 \.define home.en "http://www.myserver.com/english/index.html" \.define home.es "http://www.myserver.com/spanish/index.html" \.define home.fr "http://www.myserver.com/french/index.html"Now if you use the symbol $\(home), htmlpp will
If you want to make a link to a variable which is in a different language than the current one in $\(LANG) you can use the full symbol name and Htmlpp will add for you the 'hreflang=xx' attribute:
.define $\(LANG) es $\(*home=Home) --> <A href="http://www.myserver.com/spanish/index.html">Home</A> $\(*home.es=Home) --> <A href="http://www.myserver.com/spanish/index.html">Home</A> $\(*home.en=Home) --> <A href="http://www.myserver.com/english/index.html" hreflang=en>Home</A>
You can use the following trick. Write your source file as:
\.if ("$\(LANG)" eq "en") [... version in english ...] \.elsif ("$\(LANG)" eq "es") [... version in spanish ...] \.elsif ("$\(LANG)" eq "fr") [... version in french ...] \.endifThen to process each language invoke htmlpp as 'htmlpp -set LANG=xx filename'. You can also write a simple shell script to process the three languages at once by calling three times to Htmlpp. .build anchor guru = guru mode .H3 Htmlpp Guru Mode
Recognising that a True Guru does not have time to painfully mark-up large HTML documents, htmlpp includes a basic text-to-HTML converter. You can invoke this as a preprocessing phase to the normal htmlpp process. Right now, this is an either-or choice; you either use htmlpp commands in a HTML document, or a text document and guru mode, but not a mixture of the two modes. (Release 3.1 of htmlpp tried to make this work, but that did not last long :\ )
You can, usefully, use htmlpp's guru mode to mark-up a document, then fine-tune it by hand.
To use guru mode, run htmlpp with the '-guru' option:
htmlpp -guru filename
Guru mode works by recognising layout, and converting this to HTML. I've tried to keep a balance between features and complexity, to give you something useful without becoming too formal (which is what HTML is for). Basically, guru mode relies on layout rules that also help to make the text readable in any case. For example, blank lines and indentation are significant in most places. One consequence of this is that the plain text file is very readable even before it is HTML'd (assuming you do your bit to help things.)
In guru mode, htmlpp reads an input text file (with any name and extension except '.hpp') and creates an output file with the same name and the extension '.hpp'. It then processes this file as it would any normal input file. The '.hpp' file remains afterwards, so you can use it as the basis for further refinement if wanted. (You should call it something else, to avoid embarrasing mistakes.) .H4 Standard Guru Mode Definitions
The file 'guru.def' is always inserted at the start of the newly-created file. You can modify this file as wanted, to tune the results of guru mode. You cannot choose another name for this file other than by changing htmlpp's source code, which I don't recommend.
Htmlpp looks for a file called 'guru.fmt' which may exist and which may redefine the various HTML tags it uses. A file 'guru_opt.fmt' is supplied in the htmlpp distribution; rename or copy this to 'guru.fmt' and change any values you want to (I'd suggest you remove anything that does not change, just to make things clear). I've made it work in this way so that if you reinstall htmlpp, you don't loose your work. .H4 Chapter and Section Headers
Htmlpp handles three levels of headers, H1, H2, and H3. In the text these look like this:
Chapter Header ************** Section Header ============== Subsection Header -----------------
The line following the header text must start with 3 or more asterisks, equals, or hyphens. There is no way to specify H4 or other headers. I recommend that you start the document with a chapter header.
You can also request a horizontal rule (<HR>) by putting four or more dots on a line by themselves:
....
The header text line must come after a blank line, or at the start of the document. .H4 Table of Contents
If your document contains at least two chapters, htmlpp will insert a table of contents before the second chapter header. This works best if the first chapter is empty or contains a brief text to introduce the document. Htmlpp inserts the table of contents by adding a section header called 'Table of Contents', and then a line '.include contents.def', in the normal manner. You should not call the first chapter 'Table of Contents'. .H4 Pagination
Htmlpp inserts a '.page' command before each chapter header. Therefore, use chapter headers wisely to break the document into usable pages. .H4 Page Headers and Footers
The guru.def file normally includes 'prelude.def', which defines page headers and footers for the document. You will normally tune these for any project -- the supplied files contain references to iMatix URLs that may not be appropriate for your work. I like to use the same headers and footers (the same prelude.def) for all the files in a project, including those I that use guru mode. .H4 Paragraphs
A paragraph is anything following a blank line that does not look like something else. Basically, any plain text following a blank line is given a <P> tag. Note however the exceptions that follow... .H4 Preformatted Text
If a line is indented by 4 or more spaces, or a tab, htmlpp treats the line as 'preformatted' text and inserts a <PRE> tag. You can mix blank lines with preformatted text. .H4 Bulleted and Numbered Lists
A paragraph starting with a hyphen and a space is considered to be a bulleted list item. A paragraph starting with a digit and a dot and optionally a space is considered to be a numbered list item. You can put blank lines between list items, but it's not necessary. Cosmetically, when list items are short, blank lines are disturbing. But when list items are several lines, blank lines make the text more readable. Either way, htmlpp is happy. .H4 Definition Lists
A definition list is a line ending in ':' followed by some lines indented by one or more spaces. For example:
Definition: Explanation of definition.
You can put blank lines between definition items, but again, it's a matter of cosmetics. There should be a blank line before the first definition item, however. .H4 Tables
Tables are one of the real pains of HTML markup, in my opinion. Here htmlpp tries to solve the most common case; a two-column table consisting of a term or value in one column, and an explanation in the second column.
A table can start with a header, which is a line like this:
Some column: Followed by some explanation:
Here, the colons (':') are important. Htmlpp also wants a captial letter at the start of both phrases, and a space after the first colon. The table header is optional; you can start immediately with table items. Either way, htmlpp needs a blank line before the table. A table item looks like this:
Some_word: Followed by some explanation which can come on several lines.
The first column must be a single word - if you want several words, use underlines. Htmlpp replaces these by spaces. The explanation can come on several lines, which must be indented by one or more spaces. .H4 Figures and Images
To insert a figure, use one of these conventions:
[Figure filename: caption] [Figure "filename": caption]
Htmlpp inserts a figure caption, numbering the figures in a document from 1 upwards. The caption is followed by an <IMG> tag to display the file. You can use a URI (a path) as the filename, or an URL (with a host name specifier); you must put an URL in quotes. My preference is to put image files locally with the HTML files, and use a simple filename without a path. This is just easier to manage and lets you put the HTML files plus images in any directory. If htmlpp can find the image you specify, and it's a .GIF or .JPG file, it will insert the WIDTH= and HEIGHT= tags automatically.
To insert a plain image, omit the 'Figure' keyword. For example, these are all examples of valid images:
[Figure somefile.gif: caption] [somefile.gif: caption] [Figure somefile.gif] [somefile.gif].H4 Hyperlinks
If you use <name@address>, this is converted into a mailto: URL hyperlink. If you use <http://address/document> -- or any other URL -- this is converted into a hyperlink as well. You can follow the URL by ':description' if you like, e.g. <http://www.imatix.com:iMatix Corporation's Site>. You can also refer to local files using the syntax </localfile[:description]>.
Htmlpp does not presently allow links within the document or to other documents. .H4 Special Characters
Since you're not typing HTML, htmlpp replaces <, > and & by HTML metacharacters. < and > are used to indicate hyperlinks. .build anchor intrinsic .H3 Htmlpp Intrinsic Functions
Htmlpp provides a number of intrinsic functions that you can use in your text. The syntax for using an intrinsic function is:
&function-name\(arguments)
This function: | Does this: |
---|---|
&$(*date)\("picture", date) | Format specified date using picture |
&$(*date)\("picture", date, lc) | Format specified date using picture and language code. |
&$(*date)\("picture") | Format current date using picture |
&$(*date)\() | Return current date value |
&$(*time)\() | Format current time as hh:mm:ss |
&$(*week_day)\([date]) | Get day of week, 0=Sunday, 6=Saturda |
&$(*year_week)\([date]) | Get week of year, 1 is first full we |
&$(*julian_date)\([date]) | Get Julian date for date |
&$(*lillian_date)\([date]) | Get Lillian date for date |
&$(*date_to_days)\(date) | Convert yyyymmdd to Lillian date |
&$(*days_to_date)\(days) | Convert Lillian date to yyyymmdd |
&$(*future_date)\(days,[date]) | Calculate future date |
&$(*past_date)\(days,[date]) | Calculate past date |
&$(*date_diff)\(date1,date2) | Calculate differences between dates |
&$(*image_height)\("image.ext") | Get image height (GIF, JPEG) |
&$(*image_width)\("image.ext") | Get image width (GIF, JPEG) |
&$(*file_size)\("filename",arg) | Get size of file: optional arg K or |
&$(*file_date)\("filename") | Get date of file |
&$(*file_time)\("filename") | Get time of file as hh:mm:ss |
&$(*normalise)\("filename") | Normalise filename to UNIX format |
&$(*system)\("command") | Get result of some system utility |
&$(*upper)\("string") | Convert string to uppercase text |
&$(*lower)\("string") | Convert string to lowercase text |
&$(*pageref)\("page","title") | Build link for page index |
&$(*relpath)\("to") | Get relative path from current document->to |
&$(*relpath)\(["from"],"to") | Get relative path from->to |
Syntax: .function date
&date\(picture, value) &date\(picture, value, language) &date\(picture) &date\()
Without a picture, returns the current date. With a picture, formats the current date according to a picture that you specify. You can optionally supply a date value in the standard 8-digit format; YYYYMMDD (as returned by &date\()), or use 0 to indicate today's date. You can optionally follow the picture and value by a language code; the values currently accepted are "es" for Spanish, "fr" for French, and "dk" for Danish. Anything else is taken to mean English. If no language is specified, $\(LANG) is used by default. The picture can consist of any mixture of these elements:
cc | century 2 digits, 01-99 |
y | day of year, 1-366 |
yy | year 2 digits, 00-99 |
yyyy | year 4 digits, 100-9999 |
m | month, 1-12 |
mm | month, 01-12 |
mmm | month, 3 letters |
mmmm | month, full name |
MMM | month, 3 letters, ucase |
MMMM | month, full name, ucase |
d | day, 1-31 |
dd | day, 01-31 |
ddd | day of week, Sun-Sat |
dddd | day of week, Sunday-Saturday |
DDD | day of week, SUN-SAT |
DDDD | day of week, SUNDAY-SATURDAY |
w | day of week, 1-7 (1=Sunday) |
ww | week of year, 1-53 |
q | year quarter, 1-4 |
\x | literal character x |
other | literal character |
Examples:
\.echo &date\() --> Nov 13, 99 \.echo &date\('mm d, yy') --> Dec 2, 98 \.echo &date\('d mmm, yy') --> 2 Dec, 98 \.echo &date\("yymd") --> 9812 2 \.echo &date\("yyyymmdd") --> 19981202 \.echo &date\("d \de mmmm \de yyyy", 0, "es") --> today's date in Spanish.function time
&time\()
Formats the current time in the same way as the $\(TIME) symbol. The difference is that $\(TIME) is set when htmlpp starts working; &time\() reflects the current time. .function week_day
&week_day\() &week_day\(date)
Returns the day of the week for the specified date, or for the current date if no argument is given. Day 0 is Sunday; day 6 is Saturday. .function year_week
&year_week\() &year_week\(date)
Returns the week of the year for the specified date, or for the current date if no argument is given. Week 1 is the first full week, starting with a Sunday. .function julian_date
&julian_date\() &julian_date\(date)
Returns the Julian date for the specified date, or for the current date if no argument is given. Day 1 is January 1. .function lillian_date
&lillian_date\() &lillian_date\(date)
Returns the Lillian date for the specified date, or for the current date if no argument is given. This is the number of days since a starting (but unspecified) epoch (which in fact is around 1582). .function date_to_days
&date_to_days\(date)
Returns the Lillian date for the specified date. This function is really a the same as &lillian_date\() except that you must supply a date argument. It's provided for orthogonality with &days_to_date\(). .function days_to_date
&days_to_date\(days)
Converts a Lillian date back into a normal date in the form yyyymmdd. You can use this function (in combination with the reverse function, &date_to_days\()) to calculate past and future dates. .function future_date
&future_date\(days) &future_date\(days,date)
Calculates a date at some point in the future. For instance, &future_date(1) will produce tomorrow's date. If the date argument is not provided, calculates from today. .function past_date
&past_date\(days) &past_date\(days,date)
Calculates a date at some point in the past. For instance, &past_date(1) will produce yesterday's date. If the date argument is not provided, calculates from today. .function date_diff
&date_diff\(date) &date_diff\(date1,date2)
Calculates the difference between two dates, in days. The calculation is date1 - date2. If date2 is not supplied, calculates using today, and will therefore return a positive value if date is in the future, and a negative value if date is in the past. .function image_width
&image_width\(filename)
Returns the width of the specified image, which can be a GIF or JPEG file, in any of the common formats (including progressive encoding). The width is returned in pixels. .function image_height
&image_height\(filename)
Returns the height of the specified image, which can be a GIF or JPEG file, in any of the common formats (including progressive encoding). The height is returned in pixels. .function file_size
&file_size\(filename) &file_size\(filename, K) &file_size\(filename, M)
Returns the size of the specified file. If the second argument is K or M, calculates the size in Kb or Mb as appropriate. Always returns an integer value. .function file_date
&file_date\(filename)
Returns the date of the specified file, as an 8-digit value, YYYYMMDD. .function file_time
&file_time\(filename)
Returns the time of the specified file, as a string, HH:MM:SS. .function normalise
&normalise\(filepath)
Returns the filepath in a UNIX-style format. You can use this, for instance, under MS-DOS, when filenames taken from (e.g.) the environment contain back slashes which can cause problems. Replaces \ by / and spaces by underlines. .function system
&system\(string)
Returns the result of some system utility. For instance:
.define SERVER http://&system\("hostname").function upper
&upper\(string)
Returns the string in uppercase letters. .function lower
&lower\(string)
Returns the string in lowercase letters. .function pageref
&pageref\("page","title")Does the same as this htmlpp code: \.if "name" eq "$(PAGE)" title \.else <A HREF="page">title</A> \.endif
This function strips-off any HTML tags that you put around the title text when it uses it to build a link. So, you can do this kind of thing, which I often use to build an index in the page footer: \.block index_entry &pageref\("$\(INDEX_PAGE)","<EM>$\(INDEX_TITLE)</EM>") \.endblock .function relpath
&relpath\(["from"], "to")
Returns the relative path from 'from' to 'to'. If only one argument is specified, the current HTML page is used as 'from'. For example:
&relpath\("john/peter/david/me.html","john/henry/you.html")would return "../../henry/you.html". You can use this to create a web site with pure relative references to other pages. Remember that you don't need to use this function with $\(*name) links if $\(USE_RELPATH) is set to 1. Note that if you use relative references you can test and use the HTML pages on a local hard disk as well as on the server without changes. .H3 Multipass Processing
Since version 2.00, htmlpp uses a multipass technique to allow embedded blocks. For example, you can place .include actions in the header or footer blocks, or define your own blocks that have \.define, .page, and other actions.
Htmlpp handles this using the following rules:
One consequence of this is that htmlpp needs a minimum of 3 passes to fully process a document, one to collect all the titles; one to insert page headers and footers, and a last one to break the text into individual pages. If any genius can help me reduce this to two (or one!) pass, go ahead.
The upside is that you can do really funky stuff in headers and footers: for instance, the htmlpp pages build a document index in the footer, switching hyperlinks on and off to indicate the current page in the index. .H3 Multipass Debugging
To see what htmlpp is doing with its passes, use the -debug option, like this:
htmlpp -debug filenameThis leaves a number of .wrk files lying around; these contain the result of each pass. .H3 Other Things to Know
Even without looking, I'm sure you're trying something like \.if $\(var) = Xyz. Well, this won't work. Htmlpp is lazy, and sends all its .if commands to Perl to evaluate. Perl thinks that '=' is an assignment, not a comparison. Which always works, or perhaps never does, but certainly will not change depending on the value of $\(var). To cut a long story short, use 'eq' and buy the Camel Book. .H4 Why does my .if command still not work?
Well, maybe you made a mistake. For example, this is wrong:
if $\(TITLE) eq "first second"You have to enclose both arguments in quotes, like this:
if "$\(TITLE)" eq "first second".H4 How do I install htmlpp on UNIX?
Put it into a common directory like /usr/local/bin; make htmlpp executable (chmod +x htmlpp); make sure its .i and .pl files are in the same place; put this directory on the PERLLIB path, and put it on your PATH too. That should work. If you don't have access to /usr/local/bin (i.e. you're not root, which if you were you'd probably not need help at this point) then make a bin directory under your login directory and add $HOME/bin to your path. .H4 How do I change the .htm extension to .html?
Redefine the $\(EXT) variable. .H4 Do you know of any good link checkers? Try Linbot, written in Python. .----------------------------------------------------------------- .page Other Information .H2 $(TITLE)
The most recent version of htmlpp is located at $(*imatix=). You can download it from $(*htmlpp.zip).
The Libero documentation is one example of htmlpp in action. Download the archive $(*lrdoc.zip) to get hold of a set of text and definition files for htmlpp.
If you want to change htmlpp, get a hold of the Camel Book (Programming Perl), and the Libero documentation. .H3 Product History