Document pageSetup.
[pspp] / parse-all-xml
1 #! /bin/sh
2
3 # Parse the structure members that do not represent models or graphs
4 # and that are not page setups (which are always the first structure member).
5 # Also skip those with borderProperties, which indicate the non-"light"
6 # format.
7 lightTables=`ls -1 unzipped/*/*.xml |grep -vE 'notes|table|warning|chart|model' \
8           | xargs grep -EL '<([a-z]*:)?(model|graph)'`
9
10 if test -n "$1"; then
11     for d in $lightTables; do
12         ./parse-xml $d $1
13     done | sort | uniq -c | sort -rn
14 fi