#!/usr/bin/perl -w
{
#  25 Oct 07.  WJS
#       Convert to perl
#       Move work to list_as_text_plain in wjs_web*.pl, adding
#         -l switch to list command.  Also, -a switch is needed
#         since OOserver in general needs list with that option
#         off by default.  See the readme in the list 1.7
#         release.

  require ("cgi-lib.pl");
  require ("wjs_web_perl_utilities.pl");

#   Set up environment.  Assume .pl routine is in our directory
  $build_opt_env = "./build-opt-env.pl";
  &check_r_access($build_opt_env);
  do $build_opt_env;

  &list_as_text_plain("-f -n -z -m -l -a",$build_opt_env);

  exit;
}
