blob: 5d1709c9a706cc437c6c96bc366bf8124fcfe64e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
Index: webmagickrc.in
===================================================================
RCS file: /cvsroot/webmagick/WebMagick/webmagickrc.in,v
retrieving revision 1.16
retrieving revision 1.21
diff -u -r1.16 -r1.21
--- webmagickrc.in 4 Dec 2001 19:36:57 -0000 1.16
+++ webmagickrc.in 26 May 2004 22:56:13 -0000 1.21
@@ -83,6 +83,7 @@
# $opt_ignore = 0; # Do not webmagick this directory
# but still recurse into sub-directories
# $opt_ignorefp = 1; # Ignore /_[a-z] directories (FrontPage)
+# $opt_indexinfo = 1; # Put "Index of files"
# $opt_srcdir = '.'; # Source directory path (current directory)
# $opt_verbose = 0; # Verbose flag (default off)
# $opt_forcecache = 0; # Force update of cached thumbnails
@@ -90,6 +91,9 @@
# $opt_forcemontage = 0; # Force montage (default off)
# $opt_forcegif = 0; # Force GIF imagemaps (default off)
# $opt_forcejpeg = 0; # Force JPEG imagemaps (default off)
+# $opt_forcenouplink = 0; # Force there to be no uplink in directory index list
+# $opt_forceuplink = 0; # Force there to be an uplink in directory index list
+ # (i.e. even if we didn't generate ../index.html)
# $opt_jpegquality = 70; # Quality of JPEG imagemaps
# $opt_help = 0; # Display usage message
# $opt_version = 0; # Display version info
@@ -101,19 +105,32 @@
# $opt_title = ''; # Page title (blank provides default title)
# $opt_address = ''; # Additonal address info for bottom of
# imagemap page
+# $opt_centerfooter = 0; # Center the footer text
# $opt_date = 1; # Output updates date
# $opt_pichtml = 0; # Write separate HTML for each picture
+# $opt_pichtmlaltend = ''; # Some words to append to ALT
+# $opt_pichtmlaltstart = ''; # Some words to prepend to ALT
# $opt_pichtmlbottom = '</CENTER>';
# $opt_pichtmlext = '.html'; # Use .shtml for SSI
+# $opt_pichtmllink = ''; # Where to link pic
# $opt_pichtmlnav = 0; # Write navigation into pic's HTML
+# $opt_pichtmlupfirst = 1; # Put up button before next/prev
+# $opt_edgelinksindex = 0; # End links link back to index
# $opt_pichtmlputtitle = 1; # Write picture title above it
+# $opt_pichtmltitletop = 1; # Put picture title at top
# $opt_pichtmltarget = '';
# $opt_pichtmltitleend = '</P>'; # End tags for picture title
# $opt_pichtmltitlestart = '<P>'; # Start tags for picture title
# $opt_pichtmltop = '<CENTER>';
# $opt_tables = 0; # use HTML tables instead of image maps
+# $opt_tablebackcolor = '#000000'; # table background color
+# $opt_fancytables = 0; # use a fancier table for index pages
+# $opt_fancytableheight = 28; # the height of the fancy table border
+# $opt_tables_bottom = ''; # HTML after table contents
+# $opt_tables_params = 'WIDTH="90%"'; # table HTML parameters
+# $opt_tables_top = ''; # HTML before table contents
# $opt_allowconfig = 0; # allow user to configure table and framestyle
#
@@ -199,8 +216,7 @@
# $opt_frames = 1; # Use frames
# $opt_framemarginwidth = 1; # Pixels allocated to frame margin in horizontal direction
# $opt_framemarginheight = 1; # Pixels allocated to frame margin in vertical direction
-# $opt_framebordersize = 3 ; # Pixels allocated to frame border
-# $opt_frameborder = 'YES'; # Enable (YES) or disable (NO) decorative frame borders
+# $opt_frameborder = 1; # Enable (1) or disable (0) decorative frame borders
# $opt_framestyle = 1; # Frame style to use (out of those available)
#
@@ -245,6 +261,7 @@
# $opt_icons{'next_gray'} = 'gray_next.gif'; # Next (grayed out)
# $opt_icons{'up'} = 'blue_up.gif'; # Up
# $opt_icons{'help'} = 'blue_readme.gif'; # Help Readme File
+# $opt_icons{'ft_top'} = 'ft_top.gif'; # Fancy table top
# $opt_icons{'help'} = 'blue_help.gif'; # Help Alternative (Question)
# $opt_icons{'dir'} = 'blue_dir.gif'; # Directory List Icon (See below)
# $opt_icons{'ball'} = 'blue_ball.gif'; # A ball matching other icons
|