1998-05-20 22:34:55 +00:00
|
|
|
*** webmagick.in.orig Tue Mar 24 07:45:45 1998
|
|
|
|
--- webmagick.in Thu May 21 02:35:08 1998
|
1998-05-19 23:09:47 +00:00
|
|
|
***************
|
1998-05-20 22:17:18 +00:00
|
|
|
*** 249,255 ****
|
1998-05-19 23:09:47 +00:00
|
|
|
# Name of per-directory rc file
|
1998-05-20 22:17:18 +00:00
|
|
|
$opt_webmagickrc = '.webmagickrc';
|
1998-05-19 23:09:47 +00:00
|
|
|
# global rc files
|
|
|
|
! @global_option_files = ("/etc/webmagickrc", "$ENV{'HOME'}/${opt_webmagickrc}");
|
|
|
|
|
|
|
|
|
|
|
|
# File naming
|
1998-05-20 22:17:18 +00:00
|
|
|
--- 249,255 ----
|
1998-05-19 23:09:47 +00:00
|
|
|
# Name of per-directory rc file
|
1998-05-20 22:17:18 +00:00
|
|
|
$opt_webmagickrc = '.webmagickrc';
|
1998-05-19 23:09:47 +00:00
|
|
|
# global rc files
|
|
|
|
! @global_option_files = ("@prefix@/etc/webmagickrc", "$ENV{'HOME'}/${opt_webmagickrc}");
|
|
|
|
|
|
|
|
|
|
|
|
# File naming
|
1998-05-20 22:34:55 +00:00
|
|
|
***************
|
|
|
|
*** 1584,1590 ****
|
|
|
|
# Save run status (source files and montage options)
|
|
|
|
#
|
|
|
|
writePerlIndexFiles();
|
|
|
|
! writeJavaScriptIndexFiles();
|
|
|
|
}
|
|
|
|
|
|
|
|
# Clear error flag
|
|
|
|
--- 1584,1592 ----
|
|
|
|
# Save run status (source files and montage options)
|
|
|
|
#
|
|
|
|
writePerlIndexFiles();
|
|
|
|
! if( $opt_javascript ) {
|
|
|
|
! writeJavaScriptIndexFiles();
|
|
|
|
! }
|
|
|
|
}
|
|
|
|
|
|
|
|
# Clear error flag
|
|
|
|
***************
|
|
|
|
*** 1860,1865 ****
|
|
|
|
--- 1862,1868 ----
|
|
|
|
|
|
|
|
# ----- Output Top JavaScript Index File (usually "indexjs.html") -------
|
|
|
|
#
|
|
|
|
+ if( $opt_javascript ) {
|
|
|
|
open( INDEX, ">$fileNames{'jsDirIndex'}")
|
|
|
|
|| die("$0: Failed to open file $fileNames{'jsDirIndex'} for output\n$@\n");
|
|
|
|
print( INDEX "<HTML>\n" );
|
|
|
|
***************
|
|
|
|
*** 1873,1878 ****
|
|
|
|
--- 1876,1882 ----
|
|
|
|
print( INDEX "</SCRIPT>\n" );
|
|
|
|
print( INDEX "</HTML>\n" );
|
|
|
|
close( INDEX );
|
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
|
|
# ----- Output Frame Directory File (usally ".indexdir.html") ------
|