File: simple_s_index.thtml

package info (click to toggle)
libaws 2.2dfsg-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 7,624 kB
  • ctags: 1,173
  • sloc: ada: 61,829; ansic: 6,483; makefile: 1,282; xml: 196; sh: 119; java: 112; python: 66; sed: 40
file content (18 lines) | stat: -rw-r--r-- 679 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@@-- Builds a simple index for Split pages (secondary index)
@@-- Simply displays all entries
@@-- Parameters: $1: Treatment of entries without Hrefs (optional)
@@--             $1=ALL   All entries without Href are displayed
@@--             $1=ALPHA Only alpha entries without Href are displayed
@@--             $1=NONE (or unspecified) No entry without Href is displayed
@@--

@@TABLE@@
  @@IF@@ @_IS_EMPTY:TRIM:S_HREFS_V_@
    @@IF@@ @_UPPER:$1_@ = ALL or (@_UPPER:$1_@ = ALPHA and @_UPPER:S_INDEXES_V_@ >= A and @_UPPER:S_INDEXES_V_@ <= Z)
      @_S_INDEXES_V_@
    @@END_IF@@
  @@ELSE@@
    <a href="@_S_HREFS_V_@">@_WEB_NBSP:S_INDEXES_V_@</a>
  @@END_IF@@
@@END_TABLE@@