X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=parse-all-xml;h=0dfd8102500184356c46daafdbdc4d2055a1e226;hb=86b334a2694bd7e55392531ddb6dc0f2eda6a063;hp=a91f68eab6a4e95ca8f1e85b9d3d0c7146ca9654;hpb=7674958d6669183799289f701e1148b6903b801a;p=pspp diff --git a/parse-all-xml b/parse-all-xml index a91f68eab6..0dfd810250 100755 --- a/parse-all-xml +++ b/parse-all-xml @@ -6,17 +6,17 @@ # format. lightTables=`ls -1 unzipped/*/*.xml |grep -vE 'notes|table|warning|chart|model' \ | xargs grep -EL '<([a-z]*:)?(model|graph|pageSetup|borderProperties)'` -printf 'Structure:\n' -for d in $lightTables; do - ./parse-xml $d containment -done | sort | uniq -c | sort -rn +#printf 'Structure:\n' +#for d in $lightTables; do +# ./parse-xml $d containment +#done | sort | uniq -c | sort -rn printf '\nAttributes:\n' for d in $lightTables; do - ./parse-xml $d attributes + ./parse-xml $d text done | sort | uniq -c | sort -rn -printf '\nLabels:\n' -for d in $lightTables; do - ./parse-xml $d labels -done | sort | uniq -c | sort -rn +#printf '\nLabels:\n' +#for d in $lightTables; do +# ./parse-xml $d labels +#done | sort | uniq -c | sort -rn