summaryrefslogtreecommitdiff
path: root/bin/docs-create-example-outputs.py
diff options
context:
space:
mode:
authorDirk Baechle <dl9obn@darc.de>2013-05-04 00:41:56 +0200
committerDirk Baechle <dl9obn@darc.de>2013-05-04 00:41:56 +0200
commit0b4c8dabb0991e9ed9255de97aef1a130b9bb903 (patch)
treece55045e512062cedced30d16430327561fb0699 /bin/docs-create-example-outputs.py
parentc808170795c4ace6c9760c36b3e54e5f1159b358 (diff)
downloadscons-0b4c8dabb0991e9ed9255de97aef1a130b9bb903.tar.gz
- cleaned up 'bin' directory
- several smaller fixes - added first version of the Overview document for the doc toolchain
Diffstat (limited to 'bin/docs-create-example-outputs.py')
-rw-r--r--bin/docs-create-example-outputs.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/bin/docs-create-example-outputs.py b/bin/docs-create-example-outputs.py
new file mode 100644
index 00000000..30dc0eef
--- /dev/null
+++ b/bin/docs-create-example-outputs.py
@@ -0,0 +1,19 @@
+#!/usr/bin/env python
+#
+# Searches through the whole doc/user tree and creates
+# all output files for the single examples.
+#
+
+import os
+import sys
+import SConsExamples
+
+if __name__ == "__main__":
+ print "Checking whether all example names are unique..."
+ if SConsExamples.exampleNamesAreUnique(os.path.join('doc','user')):
+ print "OK"
+ else:
+ print "Not all example names and suffixes are unique! Please correct the errors listed above and try again."
+ sys.exit(0)
+
+ SConsExamples.createAllExampleOutputs(os.path.join('doc','user'))