Following code is taken from manual
my @bundle = $localizer->load( $dir, $propfile );
my $submit_image = $localizer->format('submit_image');
my $submit_image_label = $localizer->format('submit_image_label');
CGI_info(
title => $localizer->format('page_title'),
locale => __VALUE__('iw_locale'),
error_label_bgcolor => "#EEEEEE" ,
cancel_label => $localizer->format('cancel_button_label') ,
submit_label => $localizer->format('submit_button_label') ,
);
TAG_info(
# The value of the tag "iw_submit_comment" (obtained from the user)
# will appear as a user variable on the submit task.
# It will also be used as the job's description.
iw_submit_comment =>
[ html => "",
error_msg => $localizer->format('submit_comment_error_msg'),
label => $localizer->format('submit_comment_label'),
],
# iw_output_file => "\n",
# iw_debug_mode => "\n",
);
# make sure the file list is defined
my @submit_file = (); # files sorted in unencoded
if (__ELEM__('iw_file')) # form, then html-encoded
{ # by hand via CGI_lite
@submit_file = map { TeamSite::CGI_lite::escape_html_data($_);
} sort __VALUE__('iw_file');
} ...............
are iw_file and iw_locale variables defined by Autonomy for a workflow ? Where can I find this list of default workflow variables ?
I can see iw_raeaowner, iw_branch, iw_user and some more. Where is exhaustive list ? Or is there a way to figure out such variables ?
Thanks