annotate genwebgallery @ 4:83b0adfdd297

renamed CHANGELOG to ChangeLog (file not in repo)
author meillo@marmaro.de
date Thu, 22 Nov 2007 23:12:21 +0100
parents abe1e48e0708
children cb0dff8c48c6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
1 #!/bin/sh
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
2 #
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
3 # generates a web gallery of static web pages
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
4 # requires: ImageMagick (convert)
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
5 #
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
6 # meillo@marmaro.de
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
7 #
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
8
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
9
2
abe1e48e0708 CHANGELOG gets generated now; reviewed Makefile
meillo@marmaro.de
parents: 0
diff changeset
10 VERSION=0.3
abe1e48e0708 CHANGELOG gets generated now; reviewed Makefile
meillo@marmaro.de
parents: 0
diff changeset
11
0
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
12 targetDir="web"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
13 index="index.htm"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
14 sizePic=640
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
15 sizeThumb=200
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
16 galleryTitle="gallery title"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
17 copyright="please mind the copyright"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
18
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
19 verbose=""
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
20
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
21
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
22 function checkCreateDir() {
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
23 if [ -d "$targetDir" ] ; then
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
24 echo "Target dir '$targetDir' already exists."
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
25 echo -n "remove it? [y/n] "
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
26
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
27 read remove
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
28 if [ $remove = "y" ] ; then
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
29 rm -r "$targetDir"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
30 echo "removing '$targetDir' ..."
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
31 else
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
32 exit 1
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
33 fi
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
34 fi
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
35 mkdir -p "$targetDir"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
36 }
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
37
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
38
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
39
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
40 function insertHeader() {
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
41 echo <<EOF
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
42 <?xml version="1.0" encoding="utf-8"?>
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
43 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
44 "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
45 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
46 <head>
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
47 <title>$titleName</title>
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
48 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
49 <meta name="Generator" content="genwebgallery - see http://prog.marmaro.de" />
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
50 </head>
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
51 <body>
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
52
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
53 EOF
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
54 }
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
55
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
56
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
57 function insertFooter() {
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
58 echo <<EOF
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
59
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
60 </body>
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
61 </html>
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
62 EOF
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
63 }
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
64
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
65
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
66 function log() {
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
67 if [ $verbose ] ; then
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
68 echo "$1";
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
69 fi
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
70 }
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
71
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
72
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
73 function checkConvert() {
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
74 log "checking convert installation"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
75 (convert -version) 2> /dev/null > /dev/null
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
76 if [ $? -ne 0 ] ; then
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
77 echo "Error: Can not find 'convert' (package imagemagick)"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
78 echo "ABORT!"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
79 exit 2
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
80 fi
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
81 log "`convert -version`"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
82 }
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
83
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
84
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
85 ####
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
86
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
87
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
88
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
89 if [ $# -eq 0 ] ; then
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
90 echo "usage: `basename $0` [OPTIONS] FILES"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
91 exit 0
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
92 fi
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
93
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
94
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
95 while [ "$#" -ge 1 -a "${1:0:1}" = '-' ] ; do
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
96 case $1 in
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
97 '--version')
2
abe1e48e0708 CHANGELOG gets generated now; reviewed Makefile
meillo@marmaro.de
parents: 0
diff changeset
98 echo "genwebgallery version $VERSION"
0
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
99 exit 0
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
100 ;;
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
101 '--help')
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
102 echo "`basename $0`
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
103
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
104 generates a web gallery consisting of html pages
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
105
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
106 usage: `basename $0` [OPTIONS] FILES
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
107
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
108 options:
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
109 --version: echo program version
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
110 --help: display this output
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
111 -v: be verbose
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
112 -o DIR: all generated content is copied to this folder
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
113 -i FILE: the name of the index file (index.htm)
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
114 -t TITLE: title of the gallery
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
115 -c COPYRIGHT: a copyright notice
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
116 -ps PIXELS: size of the pics
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
117 -ts PIXELS: size of the thumbnails
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
118
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
119 author: meillo@marmaro.de
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
120 homepage: http://prog.marmaro.de
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
121 "
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
122 exit 0
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
123 ;;
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
124 '-v' | '--verbose')
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
125 verbose=1
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
126 shift
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
127 ;;
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
128 '-o' | '--output')
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
129 targetDir=$2
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
130 shift
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
131 shift
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
132 ;;
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
133 '-i' | '--index')
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
134 index=$2
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
135 shift
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
136 shift
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
137 ;;
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
138 '-t' | '--title')
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
139 galleryTitle=$2
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
140 shift
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
141 shift
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
142 ;;
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
143 '-c' | '--copyright')
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
144 copyright=$2
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
145 shift
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
146 shift
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
147 ;;
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
148 '-ps' | '--pic-size')
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
149 sizePic=$2
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
150 shift
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
151 shift
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
152 ;;
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
153 '-ts' | '--thumb-size')
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
154 sizeThumb=$2
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
155 shift
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
156 shift
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
157 ;;
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
158 *)
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
159 echo "invalid option: $1"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
160 echo "see: `basename $0` --help"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
161 exit 1
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
162 esac
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
163
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
164 done
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
165
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
166 if [ $# -eq 0 ] ; then
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
167 echo "usage: `basename $0` [OPTIONS] FILES"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
168 exit 0
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
169 fi
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
170
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
171
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
172 # verbose output
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
173 log "verbose on"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
174 log "output dir is: $targetDir"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
175 log "index file is: $index"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
176 log "gallery title is: $galleryTitle"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
177 log "copyright notice is: $copyright"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
178 log "picture size is: $sizePic"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
179 log "thumbnail size is: $sizeThumb"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
180 checkConvert
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
181 log ""
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
182
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
183
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
184 checkCreateDir
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
185
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
186 insertHeader > "$targetDir/$index"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
187 echo "<h1>$galleryTitle</h1>" >> "$targetDir/$index"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
188
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
189 for i in "$@" ; do
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
190 file=`basename $i`
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
191 targetFile="$targetDir/$file.htm"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
192 log "processing file: $file"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
193
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
194 # generate pic page
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
195 insertHeader > "$targetFile"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
196 echo "<h1>$galleryTitle</h1>" \
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
197 "<p><a href=\"$index\"><img src=\"$file\" alt=\"$file\" /></a></p>" \
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
198 "<p>$copyright</p>" >> "$targetFile"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
199 insertFooter >> "$targetFile"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
200
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
201 # copy and resize pics
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
202 convert "$i" -resize ${sizePic}x${sizePic} "$targetDir/$file"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
203 convert "$i" -resize ${sizeThumb}x${sizeThumb} "$targetDir/_$file"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
204
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
205 # generate content for index file
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
206 echo " <a href=\"$file.htm\"><img src=\"_$file\" alt=\"$file\" /></a>" >> "$targetDir/$index"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
207 done
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
208
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
209 echo "<p>$copyright</p>" >> "$targetDir/$index"
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
210 insertFooter >> "$targetDir/$index"