Skip to content

Commit

Permalink
Simplify validation to a single validate.sh script
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin C. Baird committed Nov 14, 2013
1 parent 99fe4c0 commit cf0d23e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 16 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,14 @@ for a Fate Accelerated character, or
./publish_fcs.sh some_character_file.xml

for a Fate Core System character. Other publish scripts may be created for
various alternative rule options from Fate System Toolkit or elsewhere.
various alternative rule options from Fate System Toolkit or elsewhere, and
there is also a generic `publish.sh` that depends on a default XSL stylesheet
being defined in the given XML document.

Output (currently just HTML) is rendered into the `out` directory.
Validation is also available:

./validate_fae.sh some_character_file.xml
./validate_fcs.sh some_character_file.xml
./validate.sh some_character_file.xml

Other useful URLs:
- http://www.faterpg.com/
Expand Down
2 changes: 1 addition & 1 deletion characters/validate_fae.sh → characters/validate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ if [ $# -eq 0 ] ; then
fi

for file in $@; do
xmllint --noout --dtdvalid ../fae.dtd $file
xmllint --noout $file
done
12 changes: 0 additions & 12 deletions characters/validate_fcs.sh

This file was deleted.

0 comments on commit cf0d23e

Please sign in to comment.