12345678910111213141516171819202122232425 |
- #!/bin/sh
- xsltproc bundled_docs.xslt ../../docs/source/en/simple_test.xml > ../../docs/en/index.html
- xsltproc bundled_docs.xslt ../../docs/source/en/overview.xml > ../../docs/en/overview.html
- xsltproc bundled_docs.xslt ../../docs/source/en/unit_test_documentation.xml > ../../docs/en/unit_test_documentation.html
- xsltproc bundled_docs.xslt ../../docs/source/en/group_test_documentation.xml > ../../docs/en/group_test_documentation.html
- xsltproc bundled_docs.xslt ../../docs/source/en/mock_objects_documentation.xml > ../../docs/en/mock_objects_documentation.html
- xsltproc bundled_docs.xslt ../../docs/source/en/partial_mocks_documentation.xml > ../../docs/en/partial_mocks_documentation.html
- xsltproc bundled_docs.xslt ../../docs/source/en/reporter_documentation.xml > ../../docs/en/reporter_documentation.html
- xsltproc bundled_docs.xslt ../../docs/source/en/expectation_documentation.xml > ../../docs/en/expectation_documentation.html
- xsltproc bundled_docs.xslt ../../docs/source/en/web_tester_documentation.xml > ../../docs/en/web_tester_documentation.html
- xsltproc bundled_docs.xslt ../../docs/source/en/form_testing_documentation.xml > ../../docs/en/form_testing_documentation.html
- xsltproc bundled_docs.xslt ../../docs/source/en/authentication_documentation.xml > ../../docs/en/authentication_documentation.html
- xsltproc bundled_docs.xslt ../../docs/source/en/browser_documentation.xml > ../../docs/en/browser_documentation.html
- xsltproc bundled_docs.xslt ../../docs/source/fr/simple_test.xml > ../../docs/fr/index.html
- xsltproc bundled_docs.xslt ../../docs/source/fr/overview.xml > ../../docs/fr/overview.html
- xsltproc bundled_docs.xslt ../../docs/source/fr/unit_test_documentation.xml > ../../docs/fr/unit_test_documentation.html
- xsltproc bundled_docs.xslt ../../docs/source/fr/group_test_documentation.xml > ../../docs/fr/group_test_documentation.html
- xsltproc bundled_docs.xslt ../../docs/source/fr/mock_objects_documentation.xml > ../../docs/fr/mock_objects_documentation.html
- xsltproc bundled_docs.xslt ../../docs/source/fr/partial_mocks_documentation.xml > ../../docs/fr/partial_mocks_documentation.html
- xsltproc bundled_docs.xslt ../../docs/source/fr/reporter_documentation.xml > ../../docs/fr/reporter_documentation.html
- xsltproc bundled_docs.xslt ../../docs/source/fr/expectation_documentation.xml > ../../docs/fr/expectation_documentation.html
- xsltproc bundled_docs.xslt ../../docs/source/fr/web_tester_documentation.xml > ../../docs/fr/web_tester_documentation.html
- xsltproc bundled_docs.xslt ../../docs/source/fr/form_testing_documentation.xml > ../../docs/fr/form_testing_documentation.html
- xsltproc bundled_docs.xslt ../../docs/source/fr/authentication_documentation.xml > ../../docs/fr/authentication_documentation.html
- xsltproc bundled_docs.xslt ../../docs/source/fr/browser_documentation.xml > ../../docs/fr/browser_documentation.html
|