mirror of
https://review.haiku-os.org/haiku
synced 2024-11-23 15:28:58 +01:00
interface_guidelines: add a convert.sh script that uses XMLTO.
Works on Linux, doesn't work on Haiku. It appears xsltproc tries to fetch the DTD and XSL stylesheets (which doesn't work, for some reason it wasn't built with HTTP support, and I can't figure out why). Even when telling it to use the preinstalled XSL & DTDs using --catalog, it still tries to download the files...
This commit is contained in:
parent
cea5e640aa
commit
cf76c29456
6
docs/interface_guidelines/convert.sh
Executable file
6
docs/interface_guidelines/convert.sh
Executable file
@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
if [ -z "$1" ]; then
|
||||
echo "Usage: $0 <format>"
|
||||
exit 1
|
||||
fi
|
||||
xmlto $1 index.xml --skip-validation
|
Loading…
Reference in New Issue
Block a user