I can't seem to upload the file here, so:<?php
$structure['xsl_file'] = 'std.list2.xsl';
$structure['tables']['outer'] = 'dict_table';
// identify the column specs - may use 'width' or 'class'
$structure['outer']['columns'][] = array('width' => '25%');
$structure['outer']['columns'][] = array('width' => '*');
// identify the field names and their screen labels
$structure['outer']['fields'][] = array('database_id' => 'Database Id');
$structure['outer']['fields'][] = array('table_id' => 'Table Id');
$structure['outer']['fields'][] = array('table_desc' => 'Table Description');
$structure['outer']['fields'][] = array('tbl_comment' => 'Comment');
$structure['tables']['inner'] = 'dict_column';
// identify the column specs - may use 'width' or 'class'
$structure['inner']['columns'][] = array('width' => 5);
$structure['inner']['columns'][] = array('width' => 10, 'align' => 'right');
$structure['inner']['columns'][] = array('width' => 10, 'nowrap' => 'nowrap');
$structure['inner']['columns'][] = array('width' => 20);
$structure['inner']['columns'][] = array('width' => 40);
$structure['inner']['columns'][] = array('width' => '*');
$structure['inner']['columns'][] = array('width' => 20);
// identify the field names and their screen labels
$structure['inner']['fields'][] = array('selectbox' => 'Select');
$structure['inner']['fields'][] = array('column_seq' => '#');
$structure['inner']['fields'][] = array('column_id' => 'Name');
$structure['inner']['fields'][] = array('col_rename' => 'Rename', 'size' => 20);
$structure['inner']['fields'][] = array('column_desc' => 'Description', 'size' => 40, 'nosort' => 'y');
$structure['inner']['fields'][] = array('col_comment' => 'Comment', 'cols' => 40, 'rows' => 2, 'nosort' => 'y');
$structure['inner']['fields'][] = array('is_required' => 'Is Required', 'nosort' => 'y');
// uncomment to get debug XML in /xsl directory
// $_SESSION['log_xml_document'] = true;