Package | Description |
---|---|
lazyj.page |
The template framework.
|
lazyj.page.tags |
Formatting tags for dynamic values.
|
Modifier and Type | Method and Description |
---|---|
static void |
BasePage.registerExactTag(java.lang.String sOption,
StringFormat sf)
This allows the programmer to implement new formatting options and to dynamically make them visible by registering them here.
|
static boolean |
BasePage.registerRegexpTag(java.lang.String sPattern,
StringFormat sf)
This allows the programmer to implement new formatting options and to dynamically make them visible by registering them here.
|
Modifier and Type | Class and Description |
---|---|
class |
Checked
checked returns "checked" when the value, as integer, is > 0.
|
class |
Cut
cutN return the first N characters from the value.
|
class |
Dash
dash replaces all non-alphanumeric sequences of characters each with a single dash.
|
class |
Date
date or dateFORMAT decode the date from the value and show it in the specified format.
|
class |
DDot
ddot or ddotN show nice double values, with a given number of digits after the point
(when not specified N is by default 2) and groups of 3 digits separated by comma.
|
class |
Dot
dot displays an integer value as comma separated groups of 3 digits.
|
class |
Enc
enc tag produces an URL-safe encoding of the value.
|
class |
Esc
esc tag produces an HTML-safe encoding of the value.
|
class |
Interval
interval decodes the value into a time interval and shows it in a human readable format
|
class |
JS
js tag produces an JavaScript-safe encoding of the value.
|
class |
NiceDate
nicedate translates the value (a date) into a nice human readable form.
|
class |
NtoBR
ntobr tag replaces all \n occurences with <BR>
|
class |
Size
size takes the integer value and returns the size (in bytes) indicated by the value.
|
class |
Strip
strip or stripTAG,LIST cut the HTML tags from the text, optionally leaving some
of them behind.
|
class |
Time
time decodes the value into a Date object then displays only the time part of it.
|
class |
UEnc
uenc decodes a previously URL-encoded string.
|
class |
Under
under replaces all non-alphanumeric sequences of characters each with a single underscore.
|