testeranto 0.177.0 → 0.189.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CNAME +1 -0
- package/README.html +302 -0
- package/README.md +24 -4
- package/dist/common/src/App.js +43 -0
- package/dist/common/src/Node.js +4 -8
- package/dist/common/src/PM/PM_WithEslintAndTsc.js +2 -33
- package/dist/common/src/PM/base.js +0 -1
- package/dist/common/src/PM/layers/base/PM_Base.js +1 -0
- package/dist/common/src/PM/layers/base/components/PageOperations.js +1 -0
- package/dist/common/src/PM/layers/base/components/PageOperations.testeranto.js +1 -0
- package/dist/common/src/PM/layers/linting/components/Linter.js +1 -0
- package/dist/common/src/PM/layers/linting/components/TypeChecker.js +1 -0
- package/dist/common/src/PM/layers/main/components/SidecarManager.js +1 -0
- package/dist/common/src/PM/layers/main/components/TestRunner.js +1 -0
- package/dist/common/src/PM/main.js +211 -109
- package/dist/common/src/PM/nodeSidecar.js +1 -0
- package/dist/common/src/PM/pure.js +15 -10
- package/dist/common/src/PM/pureSidecar.js +1 -1
- package/dist/common/src/PM/types.js +1 -0
- package/dist/common/src/PM/web.js +2 -1
- package/dist/common/src/Pure.js +1 -1
- package/dist/common/src/Pure.test.js +21 -19
- package/dist/common/src/build.js +30 -39
- package/dist/common/src/components/SunriseAnimation.js +291 -0
- package/dist/common/src/components/SunriseAnimation.test/interface.js +67 -0
- package/dist/common/src/components/SunriseAnimation.test/types.js +2 -0
- package/dist/common/src/components/TestStatusBadge.js +1 -21
- package/dist/common/src/components/pure/AppFrame.js +20 -0
- package/dist/common/src/components/pure/AppFrame.test/implementation.js +63 -0
- package/dist/common/src/components/pure/AppFrame.test/index.js +14 -0
- package/dist/common/src/components/pure/AppFrame.test/specification.js +25 -0
- package/dist/common/src/components/pure/AppFrame.test/types.js +3 -0
- package/dist/common/src/components/pure/FeaturesReporterView.js +23 -0
- package/dist/common/src/components/pure/FeaturesReporterView.test/implementation.js +84 -0
- package/dist/common/src/components/pure/FeaturesReporterView.test/index.js +14 -0
- package/dist/common/src/components/pure/FeaturesReporterView.test/specification.js +27 -0
- package/dist/common/src/components/pure/FeaturesReporterView.test/types.js +2 -0
- package/dist/common/src/components/pure/ModalContent.js +86 -0
- package/dist/common/src/components/pure/ModalContent.test/implementation.js +33 -0
- package/dist/common/src/components/pure/ModalContent.test/index.js +12 -0
- package/dist/common/src/components/pure/ModalContent.test/specification.js +19 -0
- package/dist/common/src/components/pure/ModalContent.test/types.js +4 -0
- package/dist/common/src/components/pure/ProjectPageView.js +53 -76
- package/dist/common/src/components/pure/ProjectPageView.test/implementation.js +118 -33
- package/dist/common/src/components/pure/ProjectPageView.test/index.js +5 -1
- package/dist/common/src/components/pure/ProjectPageView.test/specification.js +15 -2
- package/dist/common/src/components/pure/ProjectPageView.test/types.js +2 -0
- package/dist/common/src/components/pure/ProjectsPageView.js +66 -0
- package/dist/common/src/components/pure/SettingsButton.js +83 -0
- package/dist/common/src/components/pure/TestPageView.js +134 -0
- package/dist/common/src/components/pure/TestPageView.test/implementation.js +202 -0
- package/dist/common/src/components/pure/TestPageView.test/index.js +15 -0
- package/dist/common/src/components/pure/TestPageView.test/specification.js +26 -0
- package/dist/common/src/components/pure/TestPageView.test/types.js +4 -0
- package/dist/common/src/components/pure/ThemeCard.js +15 -0
- package/dist/common/src/components/stateful/FeaturesReporter.js +59 -0
- package/dist/common/src/components/stateful/ProjectPage.js +100 -0
- package/dist/common/src/components/stateful/ProjectsPage.js +92 -0
- package/dist/common/src/components/stateful/TestPage.js +133 -0
- package/dist/common/src/defaultConfig.js +1 -0
- package/dist/common/src/esbuildConfigs/web.js +1 -1
- package/dist/common/src/lib/BaseSuite.js +1 -0
- package/dist/common/src/lib/BaseSuite.test/mock.js +0 -11
- package/dist/common/src/lib/BaseSuite.test/test.js +11 -22
- package/dist/common/src/lib/Sidecar.js +1 -0
- package/dist/common/src/lib/abstractBase.js +13 -6
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +0 -6
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +3 -1
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.mock.js +28 -17
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.pure.js +2 -2
- package/dist/common/src/lib/basebuilder.js +32 -30
- package/dist/common/src/lib/classBuilder.js +2 -0
- package/dist/common/src/lib/core.js +0 -1
- package/dist/common/src/lib/core.test/MockCore.js +0 -14
- package/dist/common/src/lib/core.test/core.test.adapter.js +2 -9
- package/dist/common/src/lib/core.test/core.test.implementation.js +3 -7
- package/dist/common/src/lib/index.js +2 -0
- package/dist/common/src/lib/pmProxy.js +0 -2
- package/dist/common/src/lib/pmProxy.test/adapter.js +8 -2
- package/dist/common/src/lib/pmProxy.test/implementation.js +33 -4
- package/dist/common/src/lib/pmProxy.test/mockPMBase.js +9 -0
- package/dist/common/src/mothership/index.js +5 -0
- package/dist/common/src/mothership/test.js +44 -25
- package/dist/common/src/types/features.js +34 -0
- package/dist/common/src/utils/api.js +42 -23
- package/dist/common/src/utils/featureUtils.js +29 -0
- package/dist/common/src/utils/logFiles.js +25 -0
- package/dist/common/src/utils/makePrompt.js +115 -0
- package/dist/common/src/web.html.js +2 -6
- package/dist/common/testeranto.config.js +62 -34
- package/dist/common/tsconfig.common.tsbuildinfo +1 -1
- package/dist/module/src/App.js +9 -17
- package/dist/module/src/Node.js +4 -8
- package/dist/module/src/PM/PM_WithEslintAndTsc.js +3 -34
- package/dist/module/src/PM/base.js +0 -1
- package/dist/module/src/PM/layers/base/PM_Base.js +1 -0
- package/dist/module/src/PM/layers/base/components/PageOperations.js +1 -0
- package/dist/module/src/PM/layers/base/components/PageOperations.testeranto.js +1 -0
- package/dist/module/src/PM/layers/linting/components/Linter.js +1 -0
- package/dist/module/src/PM/layers/linting/components/TypeChecker.js +1 -0
- package/dist/module/src/PM/layers/main/components/SidecarManager.js +1 -0
- package/dist/module/src/PM/layers/main/components/TestRunner.js +1 -0
- package/dist/module/src/PM/main.js +207 -105
- package/dist/module/src/PM/nodeSidecar.js +1 -0
- package/dist/module/src/PM/pure.js +15 -10
- package/dist/module/src/PM/pureSidecar.js +1 -1
- package/dist/module/src/PM/types.js +1 -0
- package/dist/module/src/PM/web.js +2 -1
- package/dist/module/src/Pure.js +1 -1
- package/dist/module/src/Pure.test.js +21 -19
- package/dist/module/src/build.js +25 -37
- package/dist/module/src/components/SunriseAnimation.test/interface.js +32 -1
- package/dist/module/src/components/TestStatusBadge.js +1 -21
- package/dist/module/src/components/pure/AppFrame.js +13 -0
- package/dist/module/src/components/pure/AppFrame.test/implementation.js +57 -0
- package/dist/module/src/components/pure/AppFrame.test/index.js +9 -0
- package/dist/module/src/components/pure/AppFrame.test/specification.js +21 -0
- package/dist/module/src/components/pure/AppFrame.test/types.js +2 -0
- package/dist/module/src/components/pure/FeaturesReporterView.js +16 -0
- package/dist/module/src/components/pure/FeaturesReporterView.test/implementation.js +81 -0
- package/dist/module/src/components/pure/FeaturesReporterView.test/index.js +9 -0
- package/dist/module/src/components/pure/FeaturesReporterView.test/specification.js +23 -0
- package/dist/module/src/components/pure/ModalContent.js +79 -0
- package/dist/module/src/components/pure/ModalContent.test/implementation.js +30 -0
- package/dist/module/src/components/pure/ModalContent.test/index.js +7 -0
- package/dist/module/src/components/pure/ModalContent.test/specification.js +15 -0
- package/dist/module/src/components/pure/ModalContent.test/types.js +3 -0
- package/dist/module/src/components/pure/ProjectPageView.js +54 -77
- package/dist/module/src/components/pure/ProjectPageView.test/implementation.js +118 -33
- package/dist/module/src/components/pure/ProjectPageView.test/index.js +5 -1
- package/dist/module/src/components/pure/ProjectPageView.test/specification.js +15 -2
- package/dist/module/src/components/pure/ProjectPageView.test/types.js +2 -0
- package/dist/module/src/components/pure/ProjectsPageView.js +5 -4
- package/dist/module/src/components/pure/SettingsButton.js +43 -0
- package/dist/module/src/components/pure/TestPageView.js +100 -121
- package/dist/module/src/components/pure/TestPageView.test/implementation.js +166 -0
- package/dist/module/src/components/pure/TestPageView.test/index.js +10 -0
- package/dist/module/src/components/pure/TestPageView.test/specification.js +22 -0
- package/dist/module/src/components/pure/TestPageView.test/types.js +3 -0
- package/dist/module/src/components/pure/ThemeCard.js +8 -0
- package/dist/module/src/components/stateful/FeaturesReporter.js +22 -0
- package/dist/module/src/components/stateful/ProjectPage.js +1 -1
- package/dist/module/src/components/stateful/TestPage.js +25 -11
- package/dist/module/src/defaultConfig.js +1 -0
- package/dist/module/src/esbuildConfigs/web.js +1 -1
- package/dist/module/src/lib/BaseSuite.js +1 -0
- package/dist/module/src/lib/BaseSuite.test/mock.js +0 -11
- package/dist/module/src/lib/BaseSuite.test/test.js +11 -22
- package/dist/module/src/lib/Sidecar.js +1 -0
- package/dist/module/src/lib/abstractBase.js +13 -6
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +0 -6
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +3 -1
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.mock.js +28 -17
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.pure.js +1 -1
- package/dist/module/src/lib/basebuilder.js +32 -30
- package/dist/module/src/lib/classBuilder.js +2 -0
- package/dist/module/src/lib/core.js +0 -1
- package/dist/module/src/lib/core.test/MockCore.js +0 -14
- package/dist/module/src/lib/core.test/core.test.adapter.js +2 -9
- package/dist/module/src/lib/core.test/core.test.implementation.js +3 -7
- package/dist/module/src/lib/index.js +2 -0
- package/dist/module/src/lib/pmProxy.js +0 -2
- package/dist/module/src/lib/pmProxy.test/adapter.js +8 -2
- package/dist/module/src/lib/pmProxy.test/implementation.js +33 -4
- package/dist/module/src/lib/pmProxy.test/mockPMBase.js +9 -0
- package/dist/module/src/mothership/index.js +5 -0
- package/dist/module/src/mothership/test.js +44 -25
- package/dist/module/src/types/features.js +31 -0
- package/dist/module/src/utils/api.js +41 -21
- package/dist/module/src/utils/featureUtils.js +24 -0
- package/dist/module/src/utils/logFiles.js +21 -0
- package/dist/module/src/utils/makePrompt.js +108 -0
- package/dist/module/src/web.html.js +2 -6
- package/dist/module/testeranto.config.js +62 -34
- package/dist/module/tsconfig.module.tsbuildinfo +1 -1
- package/dist/prebuild/App.css +444 -12
- package/dist/prebuild/App.js +1318 -1053
- package/dist/prebuild/build.mjs +87 -103
- package/dist/prebuild/mothership/index.mjs +5 -0
- package/dist/prebuild/run.mjs +342 -211
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/dist/types/App.d.ts +1 -0
- package/dist/types/PM/layers/main/components/SidecarManager.d.ts +0 -0
- package/dist/types/PM/layers/main/components/TestRunner.d.ts +0 -0
- package/dist/types/{src/PM → PM}/main.d.ts +18 -3
- package/dist/types/{src/PM → PM}/pure.d.ts +7 -4
- package/dist/types/PM/types.d.ts +0 -0
- package/dist/types/{src/PM → PM}/web.d.ts +1 -1
- package/dist/types/{src/Types.d.ts → Types.d.ts} +1 -0
- package/dist/types/components/SunriseAnimation.d.ts +5 -0
- package/dist/types/components/SunriseAnimation.test/implementation.d.ts +0 -0
- package/dist/types/components/SunriseAnimation.test/index.d.ts +0 -0
- package/dist/types/components/SunriseAnimation.test/interface.d.ts +11 -0
- package/dist/types/components/SunriseAnimation.test/specification.d.ts +0 -0
- package/dist/types/components/SunriseAnimation.test/types.d.ts +39 -0
- package/dist/types/components/pure/AppFrame.d.ts +9 -0
- package/dist/types/components/pure/AppFrame.test/implementation.d.ts +3 -0
- package/dist/types/components/pure/AppFrame.test/index.d.ts +5 -0
- package/dist/types/components/pure/AppFrame.test/types.d.ts +33 -0
- package/dist/types/components/pure/FeaturesReporterView.d.ts +7 -0
- package/dist/types/{src/components/pure/ProjectPageView.test → components/pure/FeaturesReporterView.test}/index.d.ts +1 -2
- package/dist/types/components/pure/FeaturesReporterView.test/specification.d.ts +3 -0
- package/dist/types/components/pure/FeaturesReporterView.test/types.d.ts +54 -0
- package/dist/types/components/pure/ModalContent.d.ts +7 -0
- package/dist/types/components/pure/ModalContent.test/implementation.d.ts +3 -0
- package/dist/types/components/pure/ModalContent.test/index.d.ts +2 -0
- package/dist/types/components/pure/ModalContent.test/specification.d.ts +3 -0
- package/dist/types/components/pure/ModalContent.test/types.d.ts +45 -0
- package/dist/types/components/pure/ProjectPageView.d.ts +14 -0
- package/dist/types/components/pure/ProjectPageView.test/implementation.d.ts +3 -0
- package/dist/types/components/pure/ProjectPageView.test/index.d.ts +2 -0
- package/dist/types/components/pure/ProjectPageView.test/specification.d.ts +3 -0
- package/dist/types/components/pure/ProjectPageView.test/types.d.ts +57 -0
- package/dist/types/components/pure/ProjectsPageView.d.ts +29 -0
- package/dist/types/components/pure/SettingsButton.d.ts +3 -0
- package/dist/types/components/pure/TestPageView.d.ts +15 -0
- package/dist/types/components/pure/TestPageView.test/implementation.d.ts +11 -0
- package/dist/types/components/pure/TestPageView.test/index.d.ts +32 -0
- package/dist/types/components/pure/TestPageView.test/specification.d.ts +11 -0
- package/dist/types/components/pure/TestPageView.test/types.d.ts +65 -0
- package/dist/types/components/pure/ThemeCard.d.ts +9 -0
- package/dist/types/components/stateful/FeaturesReporter.d.ts +2 -0
- package/dist/types/components/stateful/ProjectPage.d.ts +1 -0
- package/dist/types/components/stateful/ProjectsPage.d.ts +1 -0
- package/dist/types/components/stateful/TestPage.d.ts +1 -0
- package/dist/types/init-docs.d.ts +1 -0
- package/dist/types/{src/lib → lib}/abstractBase.d.ts +1 -1
- package/dist/types/{src/lib → lib}/abstractBase.test/MockGiven.d.ts +1 -1
- package/dist/types/lib/baseBuilder.test/baseBuilder.test.pure.d.ts +3 -0
- package/dist/types/{src/lib → lib}/index.d.ts +7 -7
- package/dist/types/run.d.ts +1 -0
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/types/features.d.ts +7 -0
- package/dist/types/{src/utils → utils}/api.d.ts +1 -5
- package/dist/types/utils/featureUtils.d.ts +6 -0
- package/dist/types/utils/logFiles.d.ts +7 -0
- package/dist/types/utils/makePrompt.d.ts +2 -0
- package/dist/types/{src/web.html.d.ts → web.html.d.ts} +1 -1
- package/docs/index.md +17 -0
- package/docs/testing.prompt.txt +1 -3
- package/docs.html +28 -10
- package/index.d.ts +38 -13
- package/index.html +59 -205
- package/marketing.md +166 -0
- package/package.json +15 -7
- package/scripts/compile-docs.js +24 -14
- package/smil30/SMIL-anim.mod.xsd +163 -0
- package/smil30/SMIL-control.mod.xsd +73 -0
- package/smil30/SMIL-layout.mod.xsd +149 -0
- package/smil30/SMIL-link.mod.xsd +145 -0
- package/smil30/SMIL-media.mod.xsd +1646 -0
- package/smil30/SMIL-metainformation.mod.xsd +45 -0
- package/smil30/SMIL-smiltext.mod.xsd +353 -0
- package/smil30/SMIL-state.mod.xsd +133 -0
- package/smil30/SMIL-struct.mod.xsd +70 -0
- package/smil30/SMIL-timing.mod.xsd +105 -0
- package/smil30/SMIL-transition.mod.xsd +229 -0
- package/smil30/SMIL.xsd +63 -0
- package/smil30/its.xsd +42 -0
- package/smil30/smil-attribs-1.mod.xsd +610 -0
- package/smil30/smil-datatypes-1.mod.xsd +72 -0
- package/smil30/smil-framework-1.mod.xsd +45 -0
- package/smil30/xml.xsd +16 -0
- package/src/App.scss +4 -13
- package/src/App.tsx +11 -25
- package/src/Node.ts +6 -9
- package/src/PM/PM_WithEslintAndTsc.ts +7 -93
- package/src/PM/__tests__/nodeSidecar.testeranto.ts +2 -0
- package/src/PM/base.ts +0 -3
- package/src/PM/layers/base/PM_Base.ts +0 -0
- package/src/PM/layers/base/components/PageOperations.testeranto.ts +0 -0
- package/src/PM/layers/base/components/PageOperations.ts +0 -0
- package/src/PM/layers/linting/components/Linter.ts +0 -0
- package/src/PM/layers/linting/components/TypeChecker.ts +0 -0
- package/src/PM/layers/main/components/SidecarManager.ts +0 -0
- package/src/PM/layers/main/components/TestRunner.ts +0 -0
- package/src/PM/main.ts +249 -120
- package/src/PM/nodeSidecar.ts +1 -0
- package/src/PM/pure.ts +15 -21
- package/src/PM/pureSidecar.ts +1 -1
- package/src/PM/types.ts +0 -0
- package/src/PM/web.ts +2 -1
- package/src/Pure.test.ts +21 -20
- package/src/Pure.ts +1 -1
- package/src/README.md +66 -0
- package/src/Types.ts +1 -0
- package/src/build.ts +28 -54
- package/src/components/{pure/ProjectPageView.test/index.ts → SunriseAnimation.test/index.tsx} +7 -4
- package/src/components/SunriseAnimation.test/interface.ts +49 -0
- package/src/components/SunriseAnimation.test/types.ts +53 -0
- package/src/components/TestStatusBadge.tsx +2 -23
- package/src/components/pure/AppFrame.test/implementation.tsx +72 -0
- package/src/components/pure/AppFrame.test/index.tsx +22 -0
- package/src/components/pure/AppFrame.test/specification.ts +35 -0
- package/src/components/pure/AppFrame.test/types.ts +65 -0
- package/src/components/pure/AppFrame.tsx +29 -0
- package/src/components/pure/FeaturesReporterView.test/implementation.tsx +106 -0
- package/src/components/pure/FeaturesReporterView.test/index.tsx +18 -0
- package/src/components/pure/FeaturesReporterView.test/specification.ts +39 -0
- package/src/components/pure/FeaturesReporterView.test/types.ts +77 -0
- package/src/components/pure/FeaturesReporterView.tsx +37 -0
- package/src/components/pure/ModalContent.test/implementation.tsx +43 -0
- package/src/components/pure/ModalContent.test/index.tsx +15 -0
- package/src/components/pure/ModalContent.test/specification.ts +27 -0
- package/src/components/pure/ModalContent.test/types.ts +72 -0
- package/src/components/pure/ModalContent.tsx +182 -0
- package/src/components/pure/ProjectPageView.test/implementation.tsx +135 -36
- package/src/components/pure/ProjectPageView.test/index.tsx +20 -0
- package/src/components/pure/ProjectPageView.test/specification.ts +15 -2
- package/src/components/pure/ProjectPageView.test/types.ts +57 -13
- package/src/components/pure/ProjectPageView.tsx +155 -121
- package/src/components/pure/ProjectsPageView.tsx +36 -5
- package/src/components/pure/SettingsButton.md +1 -0
- package/src/components/pure/SettingsButton.tsx +66 -0
- package/src/components/pure/TestPageView.test/implementation.ts +194 -0
- package/src/components/pure/TestPageView.test/index.tsx +20 -0
- package/src/components/pure/TestPageView.test/specification.ts +59 -0
- package/src/components/pure/TestPageView.test/types.ts +92 -0
- package/src/components/pure/TestPageView.tsx +272 -283
- package/src/components/pure/ThemeCard.tsx +34 -0
- package/src/components/stateful/FeaturesReporter.tsx +24 -0
- package/src/components/stateful/ProjectPage.tsx +4 -3
- package/src/components/stateful/TestPage.tsx +27 -18
- package/src/defaultConfig.ts +1 -0
- package/src/esbuildConfigs/web.ts +2 -1
- package/src/lib/BaseSuite.test/mock.ts +1 -27
- package/src/lib/BaseSuite.test/test.ts +15 -37
- package/src/lib/BaseSuite.ts +3 -0
- package/src/lib/Sidecar.ts +2 -0
- package/src/lib/abstractBase.test/MockGiven.ts +1 -1
- package/src/lib/abstractBase.ts +15 -7
- package/src/lib/baseBuilder.test/baseBuilder.test.adapter.ts +0 -6
- package/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts +3 -1
- package/src/lib/baseBuilder.test/baseBuilder.test.mock.ts +27 -17
- package/src/lib/baseBuilder.test/baseBuilder.test.pure.ts +1 -1
- package/src/lib/basebuilder.ts +46 -47
- package/src/lib/classBuilder.ts +3 -0
- package/src/lib/core.test/MockCore.ts +0 -23
- package/src/lib/core.test/core.test.adapter.ts +6 -12
- package/src/lib/core.test/core.test.implementation.ts +7 -10
- package/src/lib/core.ts +2 -1
- package/src/lib/index.ts +9 -8
- package/src/lib/pmProxy.test/adapter.ts +8 -2
- package/src/lib/pmProxy.test/implementation.ts +40 -7
- package/src/lib/pmProxy.test/mockPMBase.ts +11 -0
- package/src/lib/pmProxy.ts +2 -2
- package/src/lib/types.ts +2 -0
- package/src/mothership/index.ts +6 -0
- package/src/mothership/test.ts +53 -26
- package/src/style.md +2 -0
- package/src/style.scss +16 -0
- package/src/templates/frontpage.html +54 -0
- package/src/themes.scss +9 -9
- package/src/types/features.ts +38 -0
- package/src/utils/api.ts +59 -29
- package/src/utils/featureUtils.tsx +42 -0
- package/src/utils/logFiles.ts +26 -0
- package/src/utils/makePrompt.ts +148 -0
- package/src/web.html.ts +6 -6
- package/style.css +28 -9
- package/testeranto/App.css +444 -12
- package/testeranto/App.js +1318 -1053
- package/testeranto/bundles/node/core/chunk-JBB5E3XJ.mjs +258 -0
- package/testeranto/bundles/node/core/chunk-L67RWZ4W.mjs +899 -0
- package/testeranto/bundles/node/core/chunk-ZQRRQYS4.mjs +92 -0
- package/testeranto/bundles/node/core/metafile.json +5729 -2
- package/testeranto/bundles/node/core/src/lib/BaseSuite.test/node.test.mjs +307 -0
- package/testeranto/bundles/node/core/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +247 -0
- package/testeranto/bundles/node/core/src/lib/classBuilder.test/classBuilder.test.mjs +423 -0
- package/testeranto/bundles/node/core/src/lib/core.test/core.test.mjs +505 -0
- package/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs +4804 -0
- package/testeranto/bundles/node/core/src/mothership/test.mjs +24588 -0
- package/testeranto/bundles/pure/core/chunk-KHJ35R7C.mjs +997 -0
- package/testeranto/bundles/pure/core/metafile.json +870 -3
- package/testeranto/bundles/pure/core/src/Pure.test.mjs +428 -0
- package/testeranto/bundles/pure/core/src/lib/BaseSuite.test/pure.test.mjs +379 -0
- package/testeranto/bundles/pure/core/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +235 -0
- package/testeranto/bundles/web/core/MPLUSRounded1c-Black-O75GP5JI.ttf +0 -0
- package/testeranto/bundles/web/core/MPLUSRounded1c-Bold-R524Q5BH.ttf +0 -0
- package/testeranto/bundles/web/core/MPLUSRounded1c-ExtraBold-C6GRMYVT.ttf +0 -0
- package/testeranto/bundles/web/core/MPLUSRounded1c-Light-WKN65Y2C.ttf +0 -0
- package/testeranto/bundles/web/core/MPLUSRounded1c-Medium-ZC4DWL7C.ttf +0 -0
- package/testeranto/bundles/web/core/MPLUSRounded1c-Regular-DT6EKZ3S.ttf +0 -0
- package/testeranto/bundles/web/core/MPLUSRounded1c-Thin-YWDNVG6M.ttf +0 -0
- package/testeranto/bundles/web/core/chunk-BADF3AZF.mjs +108 -0
- package/testeranto/bundles/web/core/chunk-BXV27S2S.mjs +6252 -0
- package/testeranto/bundles/web/core/chunk-EIYZKF2C.mjs +223 -0
- package/testeranto/bundles/web/core/chunk-FNXFUNA7.mjs +28528 -0
- package/testeranto/bundles/web/core/chunk-LU364HVS.mjs +3311 -0
- package/testeranto/bundles/web/core/chunk-QWII7WIM.mjs +2281 -0
- package/testeranto/bundles/web/core/chunk-VAYOSMXI.mjs +21775 -0
- package/testeranto/bundles/web/core/metafile.json +7883 -4742
- package/testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.css +12105 -0
- package/testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.html +15 -0
- package/testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.mjs +517 -0
- package/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.html +15 -0
- package/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs +166 -0
- package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.css +12105 -0
- package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.html +15 -0
- package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.mjs +93 -0
- package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.css +12105 -0
- package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.html +1 -5
- package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs +280 -39928
- package/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.css +12105 -0
- package/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.html +15 -0
- package/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.mjs +483 -0
- package/testeranto/bundles/web/core/src/lib/BaseSuite.test/web.test.html +15 -0
- package/testeranto/bundles/web/core/src/lib/BaseSuite.test/web.test.mjs +394 -0
- package/testeranto/bundles/web/core/src/lib/baseBuilder.test/baseBuilder.test.web.html +15 -0
- package/testeranto/bundles/web/core/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +256 -0
- package/testeranto/reports/core/config.json +127 -2
- package/testeranto/reports/core/src/Pure.test/pure/exit.log +0 -0
- package/testeranto/reports/core/src/Pure.test/pure/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/Pure.test/pure/message.txt +17 -0
- package/testeranto/reports/core/src/Pure.test/pure/prompt.txt +14 -0
- package/testeranto/reports/core/src/Pure.test/pure/type_errors.txt +106 -0
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/debug.log +0 -0
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/error.log +22 -0
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/exit.log +1 -0
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/info.log +4 -0
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/lint_errors.txt +2 -0
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/message.txt +17 -0
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/prompt.txt +18 -0
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/tests.json +57 -0
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/type_errors.txt +55 -0
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/warn.log +0 -0
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/debug.log +0 -0
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/error.log +56 -0
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/exit.log +1 -0
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/info.log +2 -0
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/message.txt +17 -0
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/prompt.txt +16 -0
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/suite-0/given-basicRender/then-4/butThen/features-reporter.png +0 -0
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/tests.json +76 -0
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/type_errors.txt +80 -0
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/warn.log +0 -0
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/debug.log +0 -0
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/error.log +0 -0
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/exit.log +0 -0
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/info.log +4 -0
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/message.txt +17 -0
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/prompt.txt +15 -0
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/suite-0/given-basicRender/then-2/butThen/modal-content.png +0 -0
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/tests.json +42 -0
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/type_errors.txt +65 -0
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/warn.log +0 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/debug.log +0 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/error.log +33 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/exit.log +1 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/info.log +4 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +2 -18
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/message.txt +16 -1
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/prompt.txt +3 -14
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/suite-0/given-basicRender/then-6/butThen/happy-state.png +0 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/suite-0/given-errorHandling/then-1/butThen/error-state.png +0 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/tests.json +99 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +69 -28
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/warn.log +0 -0
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/debug.log +0 -0
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/error.log +0 -0
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/exit.log +1 -0
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/info.log +2 -0
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/message.txt +17 -0
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/prompt.txt +18 -0
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/tests.json +69 -0
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/type_errors.txt +111 -0
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/warn.log +0 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/exit.log +1 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/message.txt +17 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/prompt.txt +14 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/stderr.log +0 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/stdout.log +0 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/tests.json +31 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/type_errors.txt +113 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/exit.log +0 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/message.txt +17 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/prompt.txt +15 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +113 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/debug.log +0 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/error.log +1 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/exit.log +1 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/info.log +0 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/message.txt +17 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/prompt.txt +15 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/tests.json +31 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/type_errors.txt +113 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/warn.log +0 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/exit.log +1 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/message.txt +17 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +17 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/stderr.log +0 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/stdout.log +2 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/suite-0/given-testInitialization/then-0/butThen/hello.txt +1 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/suite-0/given-testInitialization/then-1/butThen/artifact_test.txt +1 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +71 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +65 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/exit.log +0 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/message.txt +17 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +17 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +65 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/debug.log +0 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/error.log +1 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/exit.log +1 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/info.log +0 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/message.txt +17 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +17 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/suite-0/given-testInitialization/then-0/butThen/hello.txt +1 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/suite-0/given-testInitialization/then-1/butThen/artifact_test.txt +1 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +71 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +65 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/warn.log +0 -0
- package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/exit.log +1 -0
- package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/message.txt +17 -0
- package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/prompt.txt +17 -0
- package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/stderr.log +0 -0
- package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/stdout.log +619 -0
- package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/tests.json +165 -0
- package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +140 -0
- package/testeranto/reports/core/src/lib/core.test/core.test/node/exit.log +1 -0
- package/testeranto/reports/core/src/lib/core.test/core.test/node/lint_errors.txt +21 -0
- package/testeranto/reports/core/src/lib/core.test/core.test/node/message.txt +17 -0
- package/testeranto/reports/core/src/lib/core.test/core.test/node/prompt.txt +19 -0
- package/testeranto/reports/core/src/lib/core.test/core.test/node/stderr.log +0 -0
- package/testeranto/reports/core/src/lib/core.test/core.test/node/stdout.log +0 -0
- package/testeranto/reports/core/src/lib/core.test/core.test/node/type_errors.txt +64 -0
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/exit.log +1 -0
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/lint_errors.txt +23 -0
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/message.txt +17 -0
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/prompt.txt +17 -0
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stderr.log +0 -0
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stdout.log +0 -0
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/tests.json +162 -0
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/type_errors.txt +78 -0
- package/testeranto/reports/core/src/mothership/test/node/exit.log +1 -0
- package/testeranto/reports/core/src/mothership/test/node/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/mothership/test/node/message.txt +17 -0
- package/testeranto/reports/core/src/mothership/test/node/prompt.txt +14 -0
- package/testeranto/reports/core/src/mothership/test/node/stderr.log +27 -0
- package/testeranto/reports/core/src/mothership/test/node/stdout.log +8 -0
- package/testeranto/reports/core/src/mothership/test/node/tests.json +36 -0
- package/testeranto/reports/core/src/mothership/test/node/type_errors.txt +38 -0
- package/testeranto/reports/core/summary.json +109 -4
- package/testeranto.config.ts +64 -34
- package/tsc.log +356 -210
- package/tsconfig.common.json +4 -2
- package/tsconfig.json +9 -7
- package/tsconfig.module.json +3 -2
- package/tsconfig.types.json +3 -1
- package/videos/download-smil-xsd.sh +29 -0
- package/videos/project0/index.md +72 -0
- package/videos/project0/narration.json +7 -0
- package/videos/project0/narration.ssml +58 -0
- package/videos/project0/package.json +21 -0
- package/videos/project0/presentation.smil +25 -0
- package/videos/project0/smil30/SMIL-anim.mod.xsd +163 -0
- package/videos/project0/smil30/SMIL-anim.mod.xsd.1 +163 -0
- package/videos/project0/smil30/SMIL-anim.mod.xsd.2 +163 -0
- package/videos/project0/smil30/SMIL-control.mod.xsd +73 -0
- package/videos/project0/smil30/SMIL-control.mod.xsd.1 +73 -0
- package/videos/project0/smil30/SMIL-control.mod.xsd.2 +73 -0
- package/videos/project0/smil30/SMIL-layout.mod.xsd +149 -0
- package/videos/project0/smil30/SMIL-layout.mod.xsd.1 +149 -0
- package/videos/project0/smil30/SMIL-layout.mod.xsd.2 +149 -0
- package/videos/project0/smil30/SMIL-link.mod.xsd +145 -0
- package/videos/project0/smil30/SMIL-link.mod.xsd.1 +145 -0
- package/videos/project0/smil30/SMIL-link.mod.xsd.2 +145 -0
- package/videos/project0/smil30/SMIL-media.mod.xsd +1646 -0
- package/videos/project0/smil30/SMIL-media.mod.xsd.1 +1646 -0
- package/videos/project0/smil30/SMIL-media.mod.xsd.2 +1646 -0
- package/videos/project0/smil30/SMIL-metainformation.mod.xsd +45 -0
- package/videos/project0/smil30/SMIL-metainformation.mod.xsd.1 +45 -0
- package/videos/project0/smil30/SMIL-metainformation.mod.xsd.2 +45 -0
- package/videos/project0/smil30/SMIL-smiltext.mod.xsd +353 -0
- package/videos/project0/smil30/SMIL-smiltext.mod.xsd.1 +353 -0
- package/videos/project0/smil30/SMIL-smiltext.mod.xsd.2 +353 -0
- package/videos/project0/smil30/SMIL-state.mod.xsd +133 -0
- package/videos/project0/smil30/SMIL-state.mod.xsd.1 +133 -0
- package/videos/project0/smil30/SMIL-state.mod.xsd.2 +133 -0
- package/videos/project0/smil30/SMIL-struct.mod.xsd +70 -0
- package/videos/project0/smil30/SMIL-struct.mod.xsd.1 +70 -0
- package/videos/project0/smil30/SMIL-struct.mod.xsd.2 +70 -0
- package/videos/project0/smil30/SMIL-timing.mod.xsd +105 -0
- package/videos/project0/smil30/SMIL-timing.mod.xsd.1 +105 -0
- package/videos/project0/smil30/SMIL-timing.mod.xsd.2 +105 -0
- package/videos/project0/smil30/SMIL-transition.mod.xsd +229 -0
- package/videos/project0/smil30/SMIL-transition.mod.xsd.1 +229 -0
- package/videos/project0/smil30/SMIL-transition.mod.xsd.2 +229 -0
- package/videos/project0/smil30/SMIL.xsd +63 -0
- package/videos/project0/smil30/SMIL.xsd.1 +63 -0
- package/videos/project0/smil30/SMIL.xsd.2 +63 -0
- package/videos/project0/smil30/its.xsd +42 -0
- package/videos/project0/smil30/its.xsd.1 +42 -0
- package/videos/project0/smil30/its.xsd.2 +42 -0
- package/videos/project0/smil30/smil-attribs-1.mod.xsd +610 -0
- package/videos/project0/smil30/smil-attribs-1.mod.xsd.1 +610 -0
- package/videos/project0/smil30/smil-attribs-1.mod.xsd.2 +610 -0
- package/videos/project0/smil30/smil-datatypes-1.mod.xsd +72 -0
- package/videos/project0/smil30/smil-datatypes-1.mod.xsd.1 +72 -0
- package/videos/project0/smil30/smil-datatypes-1.mod.xsd.2 +72 -0
- package/videos/project0/smil30/smil-framework-1.mod.xsd +45 -0
- package/videos/project0/smil30/smil-framework-1.mod.xsd.1 +45 -0
- package/videos/project0/smil30/smil-framework-1.mod.xsd.2 +45 -0
- package/videos/project0/smil30/smil-profile-model-1.mod.xsd +1331 -0
- package/videos/project0/smil30/smil-profile-model-1.mod.xsd.1 +1331 -0
- package/videos/project0/smil30/smil-qname-1.mod.xsd +121 -0
- package/videos/project0/smil30/smil-qname-1.mod.xsd.1 +121 -0
- package/videos/project0/smil30/xml.xsd +16 -0
- package/videos/project0/smil30/xml.xsd.1 +16 -0
- package/videos/project0/smil30/xml.xsd.2 +16 -0
- package/videos/project0/smil30.xsd +137 -0
- package/videos/project0/src/audio/metadata.json +5 -0
- package/videos/project0/src/audio/narration.mp3 +0 -0
- package/videos/project0/src/motion-canvas.d.ts +1 -0
- package/videos/project0/src/project.meta +31 -0
- package/videos/project0/src/project.ts +13 -0
- package/videos/project0/src/scenes/example.meta +5 -0
- package/videos/project0/src/scenes/scene1.meta +3 -0
- package/videos/project0/src/scenes/scene1.tsx +129 -0
- package/videos/project0/src/scenes/scene2.tsx +132 -0
- package/videos/project0/src/scenes/scene3.meta +26 -0
- package/videos/project0/src/scenes/scene3.tsx +188 -0
- package/videos/project0/tsconfig.json +4 -0
- package/videos/project0/vite.config.ts +10 -0
- package/videos/trash/output/project.mp4 +0 -0
- package/videos/trash/text.mp4 +0 -0
- package/videos/trash/video/project.tsx +549 -0
- package/videos/trash/video/render.ts +15 -0
- package/videos/trash/vite.config.ts +10 -0
- package/videos/tts.js +109 -0
- package/dist/common/src/components/pure/ProjectPageView.test/adapter.js +0 -20
- package/dist/common/src/lib/dailyAnimation.js +0 -130
- package/dist/module/src/Footer.js +0 -5
- package/dist/module/src/ProjectPage.js +0 -319
- package/dist/module/src/ProjectsPage.js +0 -1
- package/dist/module/src/SettingsButton.js +0 -157
- package/dist/module/src/TestPage.js +0 -271
- package/dist/module/src/TestReport.js +0 -368
- package/dist/module/src/components/pure/ProjectPageView.test/adapter.js +0 -17
- package/dist/module/src/lib/dailyAnimation.js +0 -130
- package/dist/types/src/components/pure/ProjectPageView.d.ts +0 -14
- package/dist/types/src/components/pure/ProjectPageView.test/adapter.d.ts +0 -3
- package/dist/types/src/components/pure/ProjectPageView.test/types.d.ts +0 -39
- package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.pure.d.ts +0 -3
- package/dist/types/testeranto.config.d.ts +0 -3
- package/docs/testing.ai.txt +0 -106
- package/src/Footer.tsx +0 -8
- package/src/Project.scss +0 -1
- package/src/ProjectPage.tsx +0 -459
- package/src/ProjectsPage.tsx +0 -1
- package/src/ReportApp.scss +0 -1
- package/src/SettingsButton.tsx +0 -268
- package/src/TestPage.tsx +0 -476
- package/src/TestReport.scss +0 -24
- package/src/TestReport.tsx +0 -411
- package/src/components/pure/ProjectPageView.test/adapter.ts +0 -21
- package/src/lib/dailyAnimation.ts +0 -147
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/logs.txt +0 -59
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/suite-0/given-basicRender/then-0/butThen/happyPath.png +0 -0
- /package/dist/common/src/{NavBar.js → components/pure/NavBar.js} +0 -0
- /package/dist/{types/src/ReportServer.d.ts → module/src/components/SunriseAnimation.test/types.js} +0 -0
- /package/dist/{types/src/build.d.ts → module/src/components/pure/FeaturesReporterView.test/types.js} +0 -0
- /package/dist/module/src/{NavBar.js → components/pure/NavBar.js} +0 -0
- /package/dist/types/{src/CoreTypes.d.ts → CoreTypes.d.ts} +0 -0
- /package/dist/types/{src/Init.d.ts → Init.d.ts} +0 -0
- /package/dist/types/{src/Node.d.ts → Node.d.ts} +0 -0
- /package/dist/types/{src/NodeSidecar.d.ts → NodeSidecar.d.ts} +0 -0
- /package/dist/types/{src/PM → PM}/PM_WithEslintAndTsc.d.ts +0 -0
- /package/dist/types/{src/PM → PM}/__tests__/nodeSidecar.testeranto.d.ts +0 -0
- /package/dist/types/{src/PM → PM}/__tests__/pureSidecar.testeranto.d.ts +0 -0
- /package/dist/types/{src/PM → PM}/__tests__/webSidecar.testeranto.d.ts +0 -0
- /package/dist/types/{src/PM → PM}/base.d.ts +0 -0
- /package/dist/types/{src/PM → PM}/index.d.ts +0 -0
- /package/dist/types/{src/components/SunriseAnimation.test/implementation.d.ts → PM/layers/base/PM_Base.d.ts} +0 -0
- /package/dist/types/{src/components/SunriseAnimation.test/index.d.ts → PM/layers/base/components/PageOperations.d.ts} +0 -0
- /package/dist/types/{src/components/SunriseAnimation.test/interface.d.ts → PM/layers/base/components/PageOperations.testeranto.d.ts} +0 -0
- /package/dist/types/{src/components/SunriseAnimation.test/specification.d.ts → PM/layers/linting/components/Linter.d.ts} +0 -0
- /package/dist/types/{src/lib/dailyAnimation.d.ts → PM/layers/linting/components/TypeChecker.d.ts} +0 -0
- /package/dist/types/{src/PM → PM}/node.d.ts +0 -0
- /package/dist/types/{src/PM → PM}/nodeSidecar.d.ts +0 -0
- /package/dist/types/{src/PM → PM}/pureSidecar.d.ts +0 -0
- /package/dist/types/{src/PM → PM}/sidecar.d.ts +0 -0
- /package/dist/types/{src/PM → PM}/webSidecar.d.ts +0 -0
- /package/dist/types/{src/Pure.d.ts → Pure.d.ts} +0 -0
- /package/dist/types/{src/Pure.test.d.ts → Pure.test.d.ts} +0 -0
- /package/dist/types/{src/PureSidecar.d.ts → PureSidecar.d.ts} +0 -0
- /package/dist/types/{src/init-docs.d.ts → ReportServer.d.ts} +0 -0
- /package/dist/types/{src/ReportServer.test.ts → ReportServer.test.ts}/index.d.ts +0 -0
- /package/dist/types/{src/ReportServerLib.d.ts → ReportServerLib.d.ts} +0 -0
- /package/dist/types/{src/Web.d.ts → Web.d.ts} +0 -0
- /package/dist/types/{src/WebSidecar.d.ts → WebSidecar.d.ts} +0 -0
- /package/dist/types/{src/run.d.ts → build.d.ts} +0 -0
- /package/dist/types/{src/components → components}/TestStatusBadge.d.ts +0 -0
- /package/dist/types/{src/components/pure/ProjectPageView.test → components/pure/AppFrame.test}/specification.d.ts +0 -0
- /package/dist/types/{src/components/pure/ProjectPageView.test → components/pure/FeaturesReporterView.test}/implementation.d.ts +0 -0
- /package/dist/types/{src → components/pure}/NavBar.d.ts +0 -0
- /package/dist/types/{src/defaultConfig.d.ts → defaultConfig.d.ts} +0 -0
- /package/dist/types/{src/esbuildConfigs → esbuildConfigs}/consoleDetectorPlugin.d.ts +0 -0
- /package/dist/types/{src/esbuildConfigs → esbuildConfigs}/eslint-formatter-testeranto.d.ts +0 -0
- /package/dist/types/{src/esbuildConfigs → esbuildConfigs}/featuresPlugin.d.ts +0 -0
- /package/dist/types/{src/esbuildConfigs → esbuildConfigs}/index.d.ts +0 -0
- /package/dist/types/{src/esbuildConfigs → esbuildConfigs}/inputFilesPlugin.d.ts +0 -0
- /package/dist/types/{src/esbuildConfigs → esbuildConfigs}/nativeImportDetectorPlugin.d.ts +0 -0
- /package/dist/types/{src/esbuildConfigs → esbuildConfigs}/node.d.ts +0 -0
- /package/dist/types/{src/esbuildConfigs → esbuildConfigs}/pure.d.ts +0 -0
- /package/dist/types/{src/esbuildConfigs → esbuildConfigs}/rebuildPlugin.d.ts +0 -0
- /package/dist/types/{src/esbuildConfigs → esbuildConfigs}/web.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/BaseSuite.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/BaseSuite.test/mock.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/BaseSuite.test/node.test.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/BaseSuite.test/pure.test.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/BaseSuite.test/test.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/BaseSuite.test/web.test.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/Sidecar.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/abstractBase.test/MockThen.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/abstractBase.test/MockWhen.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/abstractBase.test/adapter.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/abstractBase.test/implementation.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/abstractBase.test/index.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/abstractBase.test/specification.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/abstractBase.test/types.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/baseBuilder.test/baseBuilder.test.adapter.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/baseBuilder.test/baseBuilder.test.implementation.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/baseBuilder.test/baseBuilder.test.mock.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/baseBuilder.test/baseBuilder.test.node.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/baseBuilder.test/baseBuilder.test.specification.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/baseBuilder.test/baseBuilder.test.types.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/baseBuilder.test/baseBuilder.test.web.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/basebuilder.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/classBuilder.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/classBuilder.test/classBuilder.test.adapter.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/classBuilder.test/classBuilder.test.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/classBuilder.test/classBuilder.test.implementation.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/classBuilder.test/classBuilder.test.specification.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/classBuilder.test/classBuilder.test.types.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/classBuilder.test/mock.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/core.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/core.test/MockCore.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/core.test/core.test.adapter.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/core.test/core.test.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/core.test/core.test.implementation.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/core.test/core.test.specification.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/core.test/core.test.types.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/mocks.test.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/pmProxy.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/pmProxy.test/adapter.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/pmProxy.test/implementation.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/pmProxy.test/index.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/pmProxy.test/mockPM.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/pmProxy.test/mockPMBase.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/pmProxy.test/specification.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/pmProxy.test/types.d.ts +0 -0
- /package/dist/types/{src/lib → lib}/types.d.ts +0 -0
- /package/dist/types/{src/mothership → mothership}/index.d.ts +0 -0
- /package/dist/types/{src/mothership → mothership}/test.d.ts +0 -0
- /package/dist/types/{src/utils → utils}/buildTemplates.d.ts +0 -0
- /package/dist/types/{src/utils → utils}/queue.d.ts +0 -0
- /package/dist/types/{src/utils.d.ts → utils.d.ts} +0 -0
- /package/src/{NavBar.tsx → components/pure/NavBar.tsx} +0 -0
|
@@ -0,0 +1,1646 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!-- ====================================================================== -->
|
|
3
|
+
<!-- SMIL 3.0 Media Objects Modules ======================================= -->
|
|
4
|
+
<!--
|
|
5
|
+
file: SMIL-media.mod
|
|
6
|
+
|
|
7
|
+
This is SMIL 3.0.
|
|
8
|
+
|
|
9
|
+
Copyright: 1998-2008 W3C (MIT, ERCIM, Keio), All Rights
|
|
10
|
+
Reserved. See http://www.w3.org/Consortium/Legal/.
|
|
11
|
+
|
|
12
|
+
Editor for SMIL 3.0: Sjoerd Mullender, CWI
|
|
13
|
+
Editor for previous versions of SMIL: Rob Lanphier,
|
|
14
|
+
Jacco van Ossenbruggen,, Sjoerd Mullender Sjoerd Mullender.
|
|
15
|
+
$Revision: 1.9 $
|
|
16
|
+
$Date: 2008/09/07 20:36:50 $
|
|
17
|
+
|
|
18
|
+
This DTD module is identified by the PUBLIC and SYSTEM identifiers:
|
|
19
|
+
|
|
20
|
+
PUBLIC "-//W3C//ELEMENTS SMIL 3.0 Media Objects//EN"
|
|
21
|
+
SYSTEM "http://www.w3.org/2008/SMIL30/SMIL-media.mod"
|
|
22
|
+
|
|
23
|
+
======================================================================
|
|
24
|
+
-->
|
|
25
|
+
<!-- ================== Profiling Entities ================================ -->
|
|
26
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" xmlns:its="http://www.w3.org/2005/11/its">
|
|
27
|
+
<xs:import namespace="http://www.w3.org/2005/11/its" schemaLocation="its.xsd"/>
|
|
28
|
+
<xs:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="xml.xsd"/>
|
|
29
|
+
<xs:element name="param" substitutionGroup="SMIL.param-control"/>
|
|
30
|
+
<xs:element name="paramGroup">
|
|
31
|
+
<xs:complexType>
|
|
32
|
+
<xs:complexContent>
|
|
33
|
+
<xs:extension base="SMIL.paramGroup.content">
|
|
34
|
+
<xs:attributeGroup ref="SMIL.paramGroup.attrib"/>
|
|
35
|
+
<xs:attributeGroup ref="SMIL.Core.attrib"/>
|
|
36
|
+
<xs:attributeGroup ref="SMIL.I18n.attrib"/>
|
|
37
|
+
</xs:extension>
|
|
38
|
+
</xs:complexContent>
|
|
39
|
+
</xs:complexType>
|
|
40
|
+
</xs:element>
|
|
41
|
+
<!--
|
|
42
|
+
normally we get xml:id from the Structure module, but in case
|
|
43
|
+
that is not included, we define it ourselves
|
|
44
|
+
-->
|
|
45
|
+
<!-- ================ Media Objects Entities ============================ -->
|
|
46
|
+
<!--
|
|
47
|
+
Most info is in the attributes, media objects are empty or
|
|
48
|
+
have children defined at the language integration level:
|
|
49
|
+
-->
|
|
50
|
+
<xs:complexType name="SMIL.mo-content">
|
|
51
|
+
<xs:complexContent>
|
|
52
|
+
<xs:extension base="SMIL.media-object.content"/>
|
|
53
|
+
</xs:complexContent>
|
|
54
|
+
</xs:complexType>
|
|
55
|
+
<!-- ================ Media Objects Elements ============================ -->
|
|
56
|
+
<xs:complexType name="SMIL.ref.content">
|
|
57
|
+
<xs:complexContent>
|
|
58
|
+
<xs:extension base="SMIL.mo-content"/>
|
|
59
|
+
</xs:complexContent>
|
|
60
|
+
</xs:complexType>
|
|
61
|
+
<xs:complexType name="SMIL.animation.content">
|
|
62
|
+
<xs:complexContent>
|
|
63
|
+
<xs:extension base="SMIL.mo-content"/>
|
|
64
|
+
</xs:complexContent>
|
|
65
|
+
</xs:complexType>
|
|
66
|
+
<xs:complexType name="SMIL.audio.content">
|
|
67
|
+
<xs:complexContent>
|
|
68
|
+
<xs:extension base="SMIL.mo-content"/>
|
|
69
|
+
</xs:complexContent>
|
|
70
|
+
</xs:complexType>
|
|
71
|
+
<xs:complexType name="SMIL.img.content">
|
|
72
|
+
<xs:complexContent>
|
|
73
|
+
<xs:extension base="SMIL.mo-content"/>
|
|
74
|
+
</xs:complexContent>
|
|
75
|
+
</xs:complexType>
|
|
76
|
+
<xs:complexType name="SMIL.text.content">
|
|
77
|
+
<xs:complexContent>
|
|
78
|
+
<xs:extension base="SMIL.mo-content"/>
|
|
79
|
+
</xs:complexContent>
|
|
80
|
+
</xs:complexType>
|
|
81
|
+
<xs:complexType name="SMIL.textstream.content">
|
|
82
|
+
<xs:complexContent>
|
|
83
|
+
<xs:extension base="SMIL.mo-content"/>
|
|
84
|
+
</xs:complexContent>
|
|
85
|
+
</xs:complexType>
|
|
86
|
+
<xs:complexType name="SMIL.video.content">
|
|
87
|
+
<xs:complexContent>
|
|
88
|
+
<xs:extension base="SMIL.mo-content"/>
|
|
89
|
+
</xs:complexContent>
|
|
90
|
+
</xs:complexType>
|
|
91
|
+
<xs:element name="ref" substitutionGroup="SMIL.media-object">
|
|
92
|
+
<xs:complexType>
|
|
93
|
+
<xs:complexContent>
|
|
94
|
+
<xs:extension base="SMIL.ref.content">
|
|
95
|
+
<xs:attributeGroup ref="SMIL.soundLevel.attrib"/>
|
|
96
|
+
<xs:attributeGroup ref="SMIL.MediaClip.attrib"/>
|
|
97
|
+
<xs:attributeGroup ref="SMIL.MediaClip.attrib.deprecated"/>
|
|
98
|
+
<xs:attribute name="begin"/>
|
|
99
|
+
<xs:attribute name="dur"/>
|
|
100
|
+
<xs:attribute name="end"/>
|
|
101
|
+
<xs:attribute name="repeatCount"/>
|
|
102
|
+
<xs:attribute name="repeatDur"/>
|
|
103
|
+
<xs:attribute name="repeat"/>
|
|
104
|
+
<xs:attribute name="restart" default="default">
|
|
105
|
+
<xs:simpleType>
|
|
106
|
+
<xs:restriction base="xs:token">
|
|
107
|
+
<xs:enumeration value="always"/>
|
|
108
|
+
<xs:enumeration value="whenNotActive"/>
|
|
109
|
+
<xs:enumeration value="never"/>
|
|
110
|
+
<xs:enumeration value="default"/>
|
|
111
|
+
</xs:restriction>
|
|
112
|
+
</xs:simpleType>
|
|
113
|
+
</xs:attribute>
|
|
114
|
+
<xs:attribute name="restartDefault" default="inherit">
|
|
115
|
+
<xs:simpleType>
|
|
116
|
+
<xs:restriction base="xs:token">
|
|
117
|
+
<xs:enumeration value="inherit"/>
|
|
118
|
+
<xs:enumeration value="always"/>
|
|
119
|
+
<xs:enumeration value="never"/>
|
|
120
|
+
<xs:enumeration value="whenNotActive"/>
|
|
121
|
+
</xs:restriction>
|
|
122
|
+
</xs:simpleType>
|
|
123
|
+
</xs:attribute>
|
|
124
|
+
<xs:attribute name="syncBehavior" default="default">
|
|
125
|
+
<xs:simpleType>
|
|
126
|
+
<xs:restriction base="xs:token">
|
|
127
|
+
<xs:enumeration value="canSlip"/>
|
|
128
|
+
<xs:enumeration value="locked"/>
|
|
129
|
+
<xs:enumeration value="independent"/>
|
|
130
|
+
<xs:enumeration value="default"/>
|
|
131
|
+
</xs:restriction>
|
|
132
|
+
</xs:simpleType>
|
|
133
|
+
</xs:attribute>
|
|
134
|
+
<xs:attribute name="syncTolerance" default="default"/>
|
|
135
|
+
<xs:attribute name="syncBehaviorDefault" default="inherit">
|
|
136
|
+
<xs:simpleType>
|
|
137
|
+
<xs:restriction base="xs:token">
|
|
138
|
+
<xs:enumeration value="canSlip"/>
|
|
139
|
+
<xs:enumeration value="locked"/>
|
|
140
|
+
<xs:enumeration value="independent"/>
|
|
141
|
+
<xs:enumeration value="inherit"/>
|
|
142
|
+
</xs:restriction>
|
|
143
|
+
</xs:simpleType>
|
|
144
|
+
</xs:attribute>
|
|
145
|
+
<xs:attribute name="syncToleranceDefault" default="inherit"/>
|
|
146
|
+
<xs:attribute name="fillDefault" default="inherit">
|
|
147
|
+
<xs:simpleType>
|
|
148
|
+
<xs:restriction base="xs:token">
|
|
149
|
+
<xs:enumeration value="remove"/>
|
|
150
|
+
<xs:enumeration value="freeze"/>
|
|
151
|
+
<xs:enumeration value="hold"/>
|
|
152
|
+
<xs:enumeration value="transition"/>
|
|
153
|
+
<xs:enumeration value="auto"/>
|
|
154
|
+
<xs:enumeration value="inherit"/>
|
|
155
|
+
</xs:restriction>
|
|
156
|
+
</xs:simpleType>
|
|
157
|
+
</xs:attribute>
|
|
158
|
+
<xs:attribute name="endsync" default="media"/>
|
|
159
|
+
<xs:attribute name="fill" default="default">
|
|
160
|
+
<xs:simpleType>
|
|
161
|
+
<xs:restriction base="xs:token">
|
|
162
|
+
<xs:enumeration value="remove"/>
|
|
163
|
+
<xs:enumeration value="freeze"/>
|
|
164
|
+
<xs:enumeration value="hold"/>
|
|
165
|
+
<xs:enumeration value="transition"/>
|
|
166
|
+
<xs:enumeration value="auto"/>
|
|
167
|
+
<xs:enumeration value="default"/>
|
|
168
|
+
</xs:restriction>
|
|
169
|
+
</xs:simpleType>
|
|
170
|
+
</xs:attribute>
|
|
171
|
+
<xs:attribute name="systemAudioDesc">
|
|
172
|
+
<xs:simpleType>
|
|
173
|
+
<xs:restriction base="xs:token">
|
|
174
|
+
<xs:enumeration value="on"/>
|
|
175
|
+
<xs:enumeration value="off"/>
|
|
176
|
+
</xs:restriction>
|
|
177
|
+
</xs:simpleType>
|
|
178
|
+
</xs:attribute>
|
|
179
|
+
<xs:attribute name="systemBaseProfile" type="xs:NMTOKEN"/>
|
|
180
|
+
<xs:attribute name="systemBitrate"/>
|
|
181
|
+
<xs:attribute name="systemCaptions">
|
|
182
|
+
<xs:simpleType>
|
|
183
|
+
<xs:restriction base="xs:token">
|
|
184
|
+
<xs:enumeration value="on"/>
|
|
185
|
+
<xs:enumeration value="off"/>
|
|
186
|
+
</xs:restriction>
|
|
187
|
+
</xs:simpleType>
|
|
188
|
+
</xs:attribute>
|
|
189
|
+
<xs:attribute name="systemComponent"/>
|
|
190
|
+
<xs:attribute name="systemCPU" type="xs:NMTOKEN"/>
|
|
191
|
+
<xs:attribute name="systemLanguage"/>
|
|
192
|
+
<xs:attribute name="systemOperatingSystem" type="xs:NMTOKEN"/>
|
|
193
|
+
<xs:attribute name="systemOverdubOrSubtitle">
|
|
194
|
+
<xs:simpleType>
|
|
195
|
+
<xs:restriction base="xs:token">
|
|
196
|
+
<xs:enumeration value="overdub"/>
|
|
197
|
+
<xs:enumeration value="subtitle"/>
|
|
198
|
+
</xs:restriction>
|
|
199
|
+
</xs:simpleType>
|
|
200
|
+
</xs:attribute>
|
|
201
|
+
<xs:attribute name="systemScreenDepth"/>
|
|
202
|
+
<xs:attribute name="systemScreenSize"/>
|
|
203
|
+
<xs:attribute name="systemVersion">
|
|
204
|
+
<xs:simpleType>
|
|
205
|
+
<xs:restriction base="xs:token">
|
|
206
|
+
<xs:enumeration value="3.0"/>
|
|
207
|
+
</xs:restriction>
|
|
208
|
+
</xs:simpleType>
|
|
209
|
+
</xs:attribute>
|
|
210
|
+
<xs:attribute name="system-bitrate"/>
|
|
211
|
+
<xs:attribute name="system-captions">
|
|
212
|
+
<xs:simpleType>
|
|
213
|
+
<xs:restriction base="xs:token">
|
|
214
|
+
<xs:enumeration value="on"/>
|
|
215
|
+
<xs:enumeration value="off"/>
|
|
216
|
+
</xs:restriction>
|
|
217
|
+
</xs:simpleType>
|
|
218
|
+
</xs:attribute>
|
|
219
|
+
<xs:attribute name="system-language"/>
|
|
220
|
+
<xs:attribute name="system-overdub-or-caption">
|
|
221
|
+
<xs:simpleType>
|
|
222
|
+
<xs:restriction base="xs:token">
|
|
223
|
+
<xs:enumeration value="overdub"/>
|
|
224
|
+
<xs:enumeration value="caption"/>
|
|
225
|
+
</xs:restriction>
|
|
226
|
+
</xs:simpleType>
|
|
227
|
+
</xs:attribute>
|
|
228
|
+
<xs:attribute name="system-screen-depth"/>
|
|
229
|
+
<xs:attribute name="system-screen-size"/>
|
|
230
|
+
<xs:attribute name="systemRequired"/>
|
|
231
|
+
<xs:attribute name="system-required"/>
|
|
232
|
+
<xs:attribute name="customTest"/>
|
|
233
|
+
<xs:attribute name="region"/>
|
|
234
|
+
<xs:attribute name="transIn"/>
|
|
235
|
+
<xs:attribute name="transOut"/>
|
|
236
|
+
<xs:attribute name="top" default="auto"/>
|
|
237
|
+
<xs:attribute name="bottom" default="auto"/>
|
|
238
|
+
<xs:attribute name="left" default="auto"/>
|
|
239
|
+
<xs:attribute name="right" default="auto"/>
|
|
240
|
+
<xs:attribute name="height" default="auto"/>
|
|
241
|
+
<xs:attribute name="width" default="auto"/>
|
|
242
|
+
<xs:attribute name="backgroundColor"/>
|
|
243
|
+
<xs:attribute name="backgroundOpacity" default="100%"/>
|
|
244
|
+
<xs:attribute name="fit">
|
|
245
|
+
<xs:simpleType>
|
|
246
|
+
<xs:restriction base="xs:token">
|
|
247
|
+
<xs:enumeration value="hidden"/>
|
|
248
|
+
<xs:enumeration value="fill"/>
|
|
249
|
+
<xs:enumeration value="meet"/>
|
|
250
|
+
<xs:enumeration value="meetBest"/>
|
|
251
|
+
<xs:enumeration value="scroll"/>
|
|
252
|
+
<xs:enumeration value="slice"/>
|
|
253
|
+
</xs:restriction>
|
|
254
|
+
</xs:simpleType>
|
|
255
|
+
</xs:attribute>
|
|
256
|
+
<xs:attribute name="z-index"/>
|
|
257
|
+
<xs:attribute name="regPoint"/>
|
|
258
|
+
<xs:attribute name="regAlign">
|
|
259
|
+
<xs:simpleType>
|
|
260
|
+
<xs:restriction base="xs:token">
|
|
261
|
+
<xs:enumeration value="topLeft"/>
|
|
262
|
+
<xs:enumeration value="topMid"/>
|
|
263
|
+
<xs:enumeration value="topRight"/>
|
|
264
|
+
<xs:enumeration value="midLeft"/>
|
|
265
|
+
<xs:enumeration value="center"/>
|
|
266
|
+
<xs:enumeration value="midRight"/>
|
|
267
|
+
<xs:enumeration value="bottomLeft"/>
|
|
268
|
+
<xs:enumeration value="bottomMid"/>
|
|
269
|
+
<xs:enumeration value="bottomRight"/>
|
|
270
|
+
</xs:restriction>
|
|
271
|
+
</xs:simpleType>
|
|
272
|
+
</xs:attribute>
|
|
273
|
+
<xs:attribute name="mediaAlign">
|
|
274
|
+
<xs:simpleType>
|
|
275
|
+
<xs:restriction base="xs:token">
|
|
276
|
+
<xs:enumeration value="topLeft"/>
|
|
277
|
+
<xs:enumeration value="topMid"/>
|
|
278
|
+
<xs:enumeration value="topRight"/>
|
|
279
|
+
<xs:enumeration value="midLeft"/>
|
|
280
|
+
<xs:enumeration value="center"/>
|
|
281
|
+
<xs:enumeration value="midRight"/>
|
|
282
|
+
<xs:enumeration value="bottomLeft"/>
|
|
283
|
+
<xs:enumeration value="bottomMid"/>
|
|
284
|
+
<xs:enumeration value="bottomRight"/>
|
|
285
|
+
</xs:restriction>
|
|
286
|
+
</xs:simpleType>
|
|
287
|
+
</xs:attribute>
|
|
288
|
+
<xs:attribute name="tabindex"/>
|
|
289
|
+
<xs:attribute name="paramGroup" type="xs:NMTOKEN"/>
|
|
290
|
+
<xs:attribute name="expr"/>
|
|
291
|
+
<xs:attributeGroup ref="SMIL.Core.attrib"/>
|
|
292
|
+
<xs:attributeGroup ref="SMIL.I18n.attrib"/>
|
|
293
|
+
<xs:attributeGroup ref="SMIL.Description.attrib"/>
|
|
294
|
+
<xs:attributeGroup ref="SMIL.MediaRenderAttributes.attrib"/>
|
|
295
|
+
<xs:attributeGroup ref="SMIL.MediaOpacity.attrib"/>
|
|
296
|
+
<xs:attributeGroup ref="SMIL.MediaPanZoom.attrib"/>
|
|
297
|
+
<xs:attributeGroup ref="SMIL.soundAlign.attrib"/>
|
|
298
|
+
<xs:attribute name="src" type="URI.datatype"/>
|
|
299
|
+
<xs:attribute name="type" type="ContentType.datatype"/>
|
|
300
|
+
<xs:attribute name="mediaRepeat" default="preserve">
|
|
301
|
+
<xs:simpleType>
|
|
302
|
+
<xs:restriction base="xs:token">
|
|
303
|
+
<xs:enumeration value="preserve"/>
|
|
304
|
+
<xs:enumeration value="strip"/>
|
|
305
|
+
</xs:restriction>
|
|
306
|
+
</xs:simpleType>
|
|
307
|
+
</xs:attribute>
|
|
308
|
+
</xs:extension>
|
|
309
|
+
</xs:complexContent>
|
|
310
|
+
</xs:complexType>
|
|
311
|
+
</xs:element>
|
|
312
|
+
<xs:element name="animation" substitutionGroup="SMIL.media-object">
|
|
313
|
+
<xs:complexType>
|
|
314
|
+
<xs:complexContent>
|
|
315
|
+
<xs:extension base="SMIL.animation.content">
|
|
316
|
+
<xs:attributeGroup ref="SMIL.soundLevel.attrib"/>
|
|
317
|
+
<xs:attributeGroup ref="SMIL.MediaClip.attrib"/>
|
|
318
|
+
<xs:attributeGroup ref="SMIL.MediaClip.attrib.deprecated"/>
|
|
319
|
+
<xs:attribute name="begin"/>
|
|
320
|
+
<xs:attribute name="dur"/>
|
|
321
|
+
<xs:attribute name="end"/>
|
|
322
|
+
<xs:attribute name="repeatCount"/>
|
|
323
|
+
<xs:attribute name="repeatDur"/>
|
|
324
|
+
<xs:attribute name="repeat"/>
|
|
325
|
+
<xs:attribute name="restart" default="default">
|
|
326
|
+
<xs:simpleType>
|
|
327
|
+
<xs:restriction base="xs:token">
|
|
328
|
+
<xs:enumeration value="always"/>
|
|
329
|
+
<xs:enumeration value="whenNotActive"/>
|
|
330
|
+
<xs:enumeration value="never"/>
|
|
331
|
+
<xs:enumeration value="default"/>
|
|
332
|
+
</xs:restriction>
|
|
333
|
+
</xs:simpleType>
|
|
334
|
+
</xs:attribute>
|
|
335
|
+
<xs:attribute name="restartDefault" default="inherit">
|
|
336
|
+
<xs:simpleType>
|
|
337
|
+
<xs:restriction base="xs:token">
|
|
338
|
+
<xs:enumeration value="inherit"/>
|
|
339
|
+
<xs:enumeration value="always"/>
|
|
340
|
+
<xs:enumeration value="never"/>
|
|
341
|
+
<xs:enumeration value="whenNotActive"/>
|
|
342
|
+
</xs:restriction>
|
|
343
|
+
</xs:simpleType>
|
|
344
|
+
</xs:attribute>
|
|
345
|
+
<xs:attribute name="syncBehavior" default="default">
|
|
346
|
+
<xs:simpleType>
|
|
347
|
+
<xs:restriction base="xs:token">
|
|
348
|
+
<xs:enumeration value="canSlip"/>
|
|
349
|
+
<xs:enumeration value="locked"/>
|
|
350
|
+
<xs:enumeration value="independent"/>
|
|
351
|
+
<xs:enumeration value="default"/>
|
|
352
|
+
</xs:restriction>
|
|
353
|
+
</xs:simpleType>
|
|
354
|
+
</xs:attribute>
|
|
355
|
+
<xs:attribute name="syncTolerance" default="default"/>
|
|
356
|
+
<xs:attribute name="syncBehaviorDefault" default="inherit">
|
|
357
|
+
<xs:simpleType>
|
|
358
|
+
<xs:restriction base="xs:token">
|
|
359
|
+
<xs:enumeration value="canSlip"/>
|
|
360
|
+
<xs:enumeration value="locked"/>
|
|
361
|
+
<xs:enumeration value="independent"/>
|
|
362
|
+
<xs:enumeration value="inherit"/>
|
|
363
|
+
</xs:restriction>
|
|
364
|
+
</xs:simpleType>
|
|
365
|
+
</xs:attribute>
|
|
366
|
+
<xs:attribute name="syncToleranceDefault" default="inherit"/>
|
|
367
|
+
<xs:attribute name="fillDefault" default="inherit">
|
|
368
|
+
<xs:simpleType>
|
|
369
|
+
<xs:restriction base="xs:token">
|
|
370
|
+
<xs:enumeration value="remove"/>
|
|
371
|
+
<xs:enumeration value="freeze"/>
|
|
372
|
+
<xs:enumeration value="hold"/>
|
|
373
|
+
<xs:enumeration value="transition"/>
|
|
374
|
+
<xs:enumeration value="auto"/>
|
|
375
|
+
<xs:enumeration value="inherit"/>
|
|
376
|
+
</xs:restriction>
|
|
377
|
+
</xs:simpleType>
|
|
378
|
+
</xs:attribute>
|
|
379
|
+
<xs:attribute name="endsync" default="media"/>
|
|
380
|
+
<xs:attribute name="fill" default="default">
|
|
381
|
+
<xs:simpleType>
|
|
382
|
+
<xs:restriction base="xs:token">
|
|
383
|
+
<xs:enumeration value="remove"/>
|
|
384
|
+
<xs:enumeration value="freeze"/>
|
|
385
|
+
<xs:enumeration value="hold"/>
|
|
386
|
+
<xs:enumeration value="transition"/>
|
|
387
|
+
<xs:enumeration value="auto"/>
|
|
388
|
+
<xs:enumeration value="default"/>
|
|
389
|
+
</xs:restriction>
|
|
390
|
+
</xs:simpleType>
|
|
391
|
+
</xs:attribute>
|
|
392
|
+
<xs:attribute name="systemAudioDesc">
|
|
393
|
+
<xs:simpleType>
|
|
394
|
+
<xs:restriction base="xs:token">
|
|
395
|
+
<xs:enumeration value="on"/>
|
|
396
|
+
<xs:enumeration value="off"/>
|
|
397
|
+
</xs:restriction>
|
|
398
|
+
</xs:simpleType>
|
|
399
|
+
</xs:attribute>
|
|
400
|
+
<xs:attribute name="systemBaseProfile" type="xs:NMTOKEN"/>
|
|
401
|
+
<xs:attribute name="systemBitrate"/>
|
|
402
|
+
<xs:attribute name="systemCaptions">
|
|
403
|
+
<xs:simpleType>
|
|
404
|
+
<xs:restriction base="xs:token">
|
|
405
|
+
<xs:enumeration value="on"/>
|
|
406
|
+
<xs:enumeration value="off"/>
|
|
407
|
+
</xs:restriction>
|
|
408
|
+
</xs:simpleType>
|
|
409
|
+
</xs:attribute>
|
|
410
|
+
<xs:attribute name="systemComponent"/>
|
|
411
|
+
<xs:attribute name="systemCPU" type="xs:NMTOKEN"/>
|
|
412
|
+
<xs:attribute name="systemLanguage"/>
|
|
413
|
+
<xs:attribute name="systemOperatingSystem" type="xs:NMTOKEN"/>
|
|
414
|
+
<xs:attribute name="systemOverdubOrSubtitle">
|
|
415
|
+
<xs:simpleType>
|
|
416
|
+
<xs:restriction base="xs:token">
|
|
417
|
+
<xs:enumeration value="overdub"/>
|
|
418
|
+
<xs:enumeration value="subtitle"/>
|
|
419
|
+
</xs:restriction>
|
|
420
|
+
</xs:simpleType>
|
|
421
|
+
</xs:attribute>
|
|
422
|
+
<xs:attribute name="systemScreenDepth"/>
|
|
423
|
+
<xs:attribute name="systemScreenSize"/>
|
|
424
|
+
<xs:attribute name="systemVersion">
|
|
425
|
+
<xs:simpleType>
|
|
426
|
+
<xs:restriction base="xs:token">
|
|
427
|
+
<xs:enumeration value="3.0"/>
|
|
428
|
+
</xs:restriction>
|
|
429
|
+
</xs:simpleType>
|
|
430
|
+
</xs:attribute>
|
|
431
|
+
<xs:attribute name="system-bitrate"/>
|
|
432
|
+
<xs:attribute name="system-captions">
|
|
433
|
+
<xs:simpleType>
|
|
434
|
+
<xs:restriction base="xs:token">
|
|
435
|
+
<xs:enumeration value="on"/>
|
|
436
|
+
<xs:enumeration value="off"/>
|
|
437
|
+
</xs:restriction>
|
|
438
|
+
</xs:simpleType>
|
|
439
|
+
</xs:attribute>
|
|
440
|
+
<xs:attribute name="system-language"/>
|
|
441
|
+
<xs:attribute name="system-overdub-or-caption">
|
|
442
|
+
<xs:simpleType>
|
|
443
|
+
<xs:restriction base="xs:token">
|
|
444
|
+
<xs:enumeration value="overdub"/>
|
|
445
|
+
<xs:enumeration value="caption"/>
|
|
446
|
+
</xs:restriction>
|
|
447
|
+
</xs:simpleType>
|
|
448
|
+
</xs:attribute>
|
|
449
|
+
<xs:attribute name="system-screen-depth"/>
|
|
450
|
+
<xs:attribute name="system-screen-size"/>
|
|
451
|
+
<xs:attribute name="systemRequired"/>
|
|
452
|
+
<xs:attribute name="system-required"/>
|
|
453
|
+
<xs:attribute name="customTest"/>
|
|
454
|
+
<xs:attribute name="region"/>
|
|
455
|
+
<xs:attribute name="transIn"/>
|
|
456
|
+
<xs:attribute name="transOut"/>
|
|
457
|
+
<xs:attribute name="top" default="auto"/>
|
|
458
|
+
<xs:attribute name="bottom" default="auto"/>
|
|
459
|
+
<xs:attribute name="left" default="auto"/>
|
|
460
|
+
<xs:attribute name="right" default="auto"/>
|
|
461
|
+
<xs:attribute name="height" default="auto"/>
|
|
462
|
+
<xs:attribute name="width" default="auto"/>
|
|
463
|
+
<xs:attribute name="backgroundColor"/>
|
|
464
|
+
<xs:attribute name="backgroundOpacity" default="100%"/>
|
|
465
|
+
<xs:attribute name="fit">
|
|
466
|
+
<xs:simpleType>
|
|
467
|
+
<xs:restriction base="xs:token">
|
|
468
|
+
<xs:enumeration value="hidden"/>
|
|
469
|
+
<xs:enumeration value="fill"/>
|
|
470
|
+
<xs:enumeration value="meet"/>
|
|
471
|
+
<xs:enumeration value="meetBest"/>
|
|
472
|
+
<xs:enumeration value="scroll"/>
|
|
473
|
+
<xs:enumeration value="slice"/>
|
|
474
|
+
</xs:restriction>
|
|
475
|
+
</xs:simpleType>
|
|
476
|
+
</xs:attribute>
|
|
477
|
+
<xs:attribute name="z-index"/>
|
|
478
|
+
<xs:attribute name="regPoint"/>
|
|
479
|
+
<xs:attribute name="regAlign">
|
|
480
|
+
<xs:simpleType>
|
|
481
|
+
<xs:restriction base="xs:token">
|
|
482
|
+
<xs:enumeration value="topLeft"/>
|
|
483
|
+
<xs:enumeration value="topMid"/>
|
|
484
|
+
<xs:enumeration value="topRight"/>
|
|
485
|
+
<xs:enumeration value="midLeft"/>
|
|
486
|
+
<xs:enumeration value="center"/>
|
|
487
|
+
<xs:enumeration value="midRight"/>
|
|
488
|
+
<xs:enumeration value="bottomLeft"/>
|
|
489
|
+
<xs:enumeration value="bottomMid"/>
|
|
490
|
+
<xs:enumeration value="bottomRight"/>
|
|
491
|
+
</xs:restriction>
|
|
492
|
+
</xs:simpleType>
|
|
493
|
+
</xs:attribute>
|
|
494
|
+
<xs:attribute name="mediaAlign">
|
|
495
|
+
<xs:simpleType>
|
|
496
|
+
<xs:restriction base="xs:token">
|
|
497
|
+
<xs:enumeration value="topLeft"/>
|
|
498
|
+
<xs:enumeration value="topMid"/>
|
|
499
|
+
<xs:enumeration value="topRight"/>
|
|
500
|
+
<xs:enumeration value="midLeft"/>
|
|
501
|
+
<xs:enumeration value="center"/>
|
|
502
|
+
<xs:enumeration value="midRight"/>
|
|
503
|
+
<xs:enumeration value="bottomLeft"/>
|
|
504
|
+
<xs:enumeration value="bottomMid"/>
|
|
505
|
+
<xs:enumeration value="bottomRight"/>
|
|
506
|
+
</xs:restriction>
|
|
507
|
+
</xs:simpleType>
|
|
508
|
+
</xs:attribute>
|
|
509
|
+
<xs:attribute name="tabindex"/>
|
|
510
|
+
<xs:attribute name="paramGroup" type="xs:NMTOKEN"/>
|
|
511
|
+
<xs:attribute name="expr"/>
|
|
512
|
+
<xs:attributeGroup ref="SMIL.Core.attrib"/>
|
|
513
|
+
<xs:attributeGroup ref="SMIL.I18n.attrib"/>
|
|
514
|
+
<xs:attributeGroup ref="SMIL.Description.attrib"/>
|
|
515
|
+
<xs:attributeGroup ref="SMIL.MediaRenderAttributes.attrib"/>
|
|
516
|
+
<xs:attributeGroup ref="SMIL.MediaOpacity.attrib"/>
|
|
517
|
+
<xs:attributeGroup ref="SMIL.MediaPanZoom.attrib"/>
|
|
518
|
+
<xs:attributeGroup ref="SMIL.soundAlign.attrib"/>
|
|
519
|
+
<xs:attribute name="src" type="URI.datatype"/>
|
|
520
|
+
<xs:attribute name="type" type="ContentType.datatype"/>
|
|
521
|
+
<xs:attribute name="mediaRepeat" default="preserve">
|
|
522
|
+
<xs:simpleType>
|
|
523
|
+
<xs:restriction base="xs:token">
|
|
524
|
+
<xs:enumeration value="preserve"/>
|
|
525
|
+
<xs:enumeration value="strip"/>
|
|
526
|
+
</xs:restriction>
|
|
527
|
+
</xs:simpleType>
|
|
528
|
+
</xs:attribute>
|
|
529
|
+
</xs:extension>
|
|
530
|
+
</xs:complexContent>
|
|
531
|
+
</xs:complexType>
|
|
532
|
+
</xs:element>
|
|
533
|
+
<xs:element name="audio" substitutionGroup="SMIL.media-object">
|
|
534
|
+
<xs:complexType>
|
|
535
|
+
<xs:complexContent>
|
|
536
|
+
<xs:extension base="SMIL.audio.content">
|
|
537
|
+
<xs:attributeGroup ref="SMIL.soundLevel.attrib"/>
|
|
538
|
+
<xs:attributeGroup ref="SMIL.MediaClip.attrib"/>
|
|
539
|
+
<xs:attributeGroup ref="SMIL.MediaClip.attrib.deprecated"/>
|
|
540
|
+
<xs:attribute name="begin"/>
|
|
541
|
+
<xs:attribute name="dur"/>
|
|
542
|
+
<xs:attribute name="end"/>
|
|
543
|
+
<xs:attribute name="repeatCount"/>
|
|
544
|
+
<xs:attribute name="repeatDur"/>
|
|
545
|
+
<xs:attribute name="repeat"/>
|
|
546
|
+
<xs:attribute name="restart" default="default">
|
|
547
|
+
<xs:simpleType>
|
|
548
|
+
<xs:restriction base="xs:token">
|
|
549
|
+
<xs:enumeration value="always"/>
|
|
550
|
+
<xs:enumeration value="whenNotActive"/>
|
|
551
|
+
<xs:enumeration value="never"/>
|
|
552
|
+
<xs:enumeration value="default"/>
|
|
553
|
+
</xs:restriction>
|
|
554
|
+
</xs:simpleType>
|
|
555
|
+
</xs:attribute>
|
|
556
|
+
<xs:attribute name="restartDefault" default="inherit">
|
|
557
|
+
<xs:simpleType>
|
|
558
|
+
<xs:restriction base="xs:token">
|
|
559
|
+
<xs:enumeration value="inherit"/>
|
|
560
|
+
<xs:enumeration value="always"/>
|
|
561
|
+
<xs:enumeration value="never"/>
|
|
562
|
+
<xs:enumeration value="whenNotActive"/>
|
|
563
|
+
</xs:restriction>
|
|
564
|
+
</xs:simpleType>
|
|
565
|
+
</xs:attribute>
|
|
566
|
+
<xs:attribute name="syncBehavior" default="default">
|
|
567
|
+
<xs:simpleType>
|
|
568
|
+
<xs:restriction base="xs:token">
|
|
569
|
+
<xs:enumeration value="canSlip"/>
|
|
570
|
+
<xs:enumeration value="locked"/>
|
|
571
|
+
<xs:enumeration value="independent"/>
|
|
572
|
+
<xs:enumeration value="default"/>
|
|
573
|
+
</xs:restriction>
|
|
574
|
+
</xs:simpleType>
|
|
575
|
+
</xs:attribute>
|
|
576
|
+
<xs:attribute name="syncTolerance" default="default"/>
|
|
577
|
+
<xs:attribute name="syncBehaviorDefault" default="inherit">
|
|
578
|
+
<xs:simpleType>
|
|
579
|
+
<xs:restriction base="xs:token">
|
|
580
|
+
<xs:enumeration value="canSlip"/>
|
|
581
|
+
<xs:enumeration value="locked"/>
|
|
582
|
+
<xs:enumeration value="independent"/>
|
|
583
|
+
<xs:enumeration value="inherit"/>
|
|
584
|
+
</xs:restriction>
|
|
585
|
+
</xs:simpleType>
|
|
586
|
+
</xs:attribute>
|
|
587
|
+
<xs:attribute name="syncToleranceDefault" default="inherit"/>
|
|
588
|
+
<xs:attribute name="fillDefault" default="inherit">
|
|
589
|
+
<xs:simpleType>
|
|
590
|
+
<xs:restriction base="xs:token">
|
|
591
|
+
<xs:enumeration value="remove"/>
|
|
592
|
+
<xs:enumeration value="freeze"/>
|
|
593
|
+
<xs:enumeration value="hold"/>
|
|
594
|
+
<xs:enumeration value="transition"/>
|
|
595
|
+
<xs:enumeration value="auto"/>
|
|
596
|
+
<xs:enumeration value="inherit"/>
|
|
597
|
+
</xs:restriction>
|
|
598
|
+
</xs:simpleType>
|
|
599
|
+
</xs:attribute>
|
|
600
|
+
<xs:attribute name="endsync" default="media"/>
|
|
601
|
+
<xs:attribute name="fill" default="default">
|
|
602
|
+
<xs:simpleType>
|
|
603
|
+
<xs:restriction base="xs:token">
|
|
604
|
+
<xs:enumeration value="remove"/>
|
|
605
|
+
<xs:enumeration value="freeze"/>
|
|
606
|
+
<xs:enumeration value="hold"/>
|
|
607
|
+
<xs:enumeration value="transition"/>
|
|
608
|
+
<xs:enumeration value="auto"/>
|
|
609
|
+
<xs:enumeration value="default"/>
|
|
610
|
+
</xs:restriction>
|
|
611
|
+
</xs:simpleType>
|
|
612
|
+
</xs:attribute>
|
|
613
|
+
<xs:attribute name="systemAudioDesc">
|
|
614
|
+
<xs:simpleType>
|
|
615
|
+
<xs:restriction base="xs:token">
|
|
616
|
+
<xs:enumeration value="on"/>
|
|
617
|
+
<xs:enumeration value="off"/>
|
|
618
|
+
</xs:restriction>
|
|
619
|
+
</xs:simpleType>
|
|
620
|
+
</xs:attribute>
|
|
621
|
+
<xs:attribute name="systemBaseProfile" type="xs:NMTOKEN"/>
|
|
622
|
+
<xs:attribute name="systemBitrate"/>
|
|
623
|
+
<xs:attribute name="systemCaptions">
|
|
624
|
+
<xs:simpleType>
|
|
625
|
+
<xs:restriction base="xs:token">
|
|
626
|
+
<xs:enumeration value="on"/>
|
|
627
|
+
<xs:enumeration value="off"/>
|
|
628
|
+
</xs:restriction>
|
|
629
|
+
</xs:simpleType>
|
|
630
|
+
</xs:attribute>
|
|
631
|
+
<xs:attribute name="systemComponent"/>
|
|
632
|
+
<xs:attribute name="systemCPU" type="xs:NMTOKEN"/>
|
|
633
|
+
<xs:attribute name="systemLanguage"/>
|
|
634
|
+
<xs:attribute name="systemOperatingSystem" type="xs:NMTOKEN"/>
|
|
635
|
+
<xs:attribute name="systemOverdubOrSubtitle">
|
|
636
|
+
<xs:simpleType>
|
|
637
|
+
<xs:restriction base="xs:token">
|
|
638
|
+
<xs:enumeration value="overdub"/>
|
|
639
|
+
<xs:enumeration value="subtitle"/>
|
|
640
|
+
</xs:restriction>
|
|
641
|
+
</xs:simpleType>
|
|
642
|
+
</xs:attribute>
|
|
643
|
+
<xs:attribute name="systemScreenDepth"/>
|
|
644
|
+
<xs:attribute name="systemScreenSize"/>
|
|
645
|
+
<xs:attribute name="systemVersion">
|
|
646
|
+
<xs:simpleType>
|
|
647
|
+
<xs:restriction base="xs:token">
|
|
648
|
+
<xs:enumeration value="3.0"/>
|
|
649
|
+
</xs:restriction>
|
|
650
|
+
</xs:simpleType>
|
|
651
|
+
</xs:attribute>
|
|
652
|
+
<xs:attribute name="system-bitrate"/>
|
|
653
|
+
<xs:attribute name="system-captions">
|
|
654
|
+
<xs:simpleType>
|
|
655
|
+
<xs:restriction base="xs:token">
|
|
656
|
+
<xs:enumeration value="on"/>
|
|
657
|
+
<xs:enumeration value="off"/>
|
|
658
|
+
</xs:restriction>
|
|
659
|
+
</xs:simpleType>
|
|
660
|
+
</xs:attribute>
|
|
661
|
+
<xs:attribute name="system-language"/>
|
|
662
|
+
<xs:attribute name="system-overdub-or-caption">
|
|
663
|
+
<xs:simpleType>
|
|
664
|
+
<xs:restriction base="xs:token">
|
|
665
|
+
<xs:enumeration value="overdub"/>
|
|
666
|
+
<xs:enumeration value="caption"/>
|
|
667
|
+
</xs:restriction>
|
|
668
|
+
</xs:simpleType>
|
|
669
|
+
</xs:attribute>
|
|
670
|
+
<xs:attribute name="system-screen-depth"/>
|
|
671
|
+
<xs:attribute name="system-screen-size"/>
|
|
672
|
+
<xs:attribute name="systemRequired"/>
|
|
673
|
+
<xs:attribute name="system-required"/>
|
|
674
|
+
<xs:attribute name="customTest"/>
|
|
675
|
+
<xs:attribute name="region"/>
|
|
676
|
+
<xs:attribute name="transIn"/>
|
|
677
|
+
<xs:attribute name="transOut"/>
|
|
678
|
+
<xs:attribute name="top" default="auto"/>
|
|
679
|
+
<xs:attribute name="bottom" default="auto"/>
|
|
680
|
+
<xs:attribute name="left" default="auto"/>
|
|
681
|
+
<xs:attribute name="right" default="auto"/>
|
|
682
|
+
<xs:attribute name="height" default="auto"/>
|
|
683
|
+
<xs:attribute name="width" default="auto"/>
|
|
684
|
+
<xs:attribute name="backgroundColor"/>
|
|
685
|
+
<xs:attribute name="backgroundOpacity" default="100%"/>
|
|
686
|
+
<xs:attribute name="fit">
|
|
687
|
+
<xs:simpleType>
|
|
688
|
+
<xs:restriction base="xs:token">
|
|
689
|
+
<xs:enumeration value="hidden"/>
|
|
690
|
+
<xs:enumeration value="fill"/>
|
|
691
|
+
<xs:enumeration value="meet"/>
|
|
692
|
+
<xs:enumeration value="meetBest"/>
|
|
693
|
+
<xs:enumeration value="scroll"/>
|
|
694
|
+
<xs:enumeration value="slice"/>
|
|
695
|
+
</xs:restriction>
|
|
696
|
+
</xs:simpleType>
|
|
697
|
+
</xs:attribute>
|
|
698
|
+
<xs:attribute name="z-index"/>
|
|
699
|
+
<xs:attribute name="regPoint"/>
|
|
700
|
+
<xs:attribute name="regAlign">
|
|
701
|
+
<xs:simpleType>
|
|
702
|
+
<xs:restriction base="xs:token">
|
|
703
|
+
<xs:enumeration value="topLeft"/>
|
|
704
|
+
<xs:enumeration value="topMid"/>
|
|
705
|
+
<xs:enumeration value="topRight"/>
|
|
706
|
+
<xs:enumeration value="midLeft"/>
|
|
707
|
+
<xs:enumeration value="center"/>
|
|
708
|
+
<xs:enumeration value="midRight"/>
|
|
709
|
+
<xs:enumeration value="bottomLeft"/>
|
|
710
|
+
<xs:enumeration value="bottomMid"/>
|
|
711
|
+
<xs:enumeration value="bottomRight"/>
|
|
712
|
+
</xs:restriction>
|
|
713
|
+
</xs:simpleType>
|
|
714
|
+
</xs:attribute>
|
|
715
|
+
<xs:attribute name="mediaAlign">
|
|
716
|
+
<xs:simpleType>
|
|
717
|
+
<xs:restriction base="xs:token">
|
|
718
|
+
<xs:enumeration value="topLeft"/>
|
|
719
|
+
<xs:enumeration value="topMid"/>
|
|
720
|
+
<xs:enumeration value="topRight"/>
|
|
721
|
+
<xs:enumeration value="midLeft"/>
|
|
722
|
+
<xs:enumeration value="center"/>
|
|
723
|
+
<xs:enumeration value="midRight"/>
|
|
724
|
+
<xs:enumeration value="bottomLeft"/>
|
|
725
|
+
<xs:enumeration value="bottomMid"/>
|
|
726
|
+
<xs:enumeration value="bottomRight"/>
|
|
727
|
+
</xs:restriction>
|
|
728
|
+
</xs:simpleType>
|
|
729
|
+
</xs:attribute>
|
|
730
|
+
<xs:attribute name="tabindex"/>
|
|
731
|
+
<xs:attribute name="paramGroup" type="xs:NMTOKEN"/>
|
|
732
|
+
<xs:attribute name="expr"/>
|
|
733
|
+
<xs:attributeGroup ref="SMIL.Core.attrib"/>
|
|
734
|
+
<xs:attributeGroup ref="SMIL.I18n.attrib"/>
|
|
735
|
+
<xs:attributeGroup ref="SMIL.Description.attrib"/>
|
|
736
|
+
<xs:attributeGroup ref="SMIL.MediaRenderAttributes.attrib"/>
|
|
737
|
+
<xs:attributeGroup ref="SMIL.MediaOpacity.attrib"/>
|
|
738
|
+
<xs:attributeGroup ref="SMIL.MediaPanZoom.attrib"/>
|
|
739
|
+
<xs:attributeGroup ref="SMIL.soundAlign.attrib"/>
|
|
740
|
+
<xs:attribute name="src" type="URI.datatype"/>
|
|
741
|
+
<xs:attribute name="type" type="ContentType.datatype"/>
|
|
742
|
+
<xs:attribute name="mediaRepeat" default="preserve">
|
|
743
|
+
<xs:simpleType>
|
|
744
|
+
<xs:restriction base="xs:token">
|
|
745
|
+
<xs:enumeration value="preserve"/>
|
|
746
|
+
<xs:enumeration value="strip"/>
|
|
747
|
+
</xs:restriction>
|
|
748
|
+
</xs:simpleType>
|
|
749
|
+
</xs:attribute>
|
|
750
|
+
</xs:extension>
|
|
751
|
+
</xs:complexContent>
|
|
752
|
+
</xs:complexType>
|
|
753
|
+
</xs:element>
|
|
754
|
+
<xs:element name="img" substitutionGroup="SMIL.media-object">
|
|
755
|
+
<xs:complexType>
|
|
756
|
+
<xs:complexContent>
|
|
757
|
+
<xs:extension base="SMIL.img.content">
|
|
758
|
+
<xs:attributeGroup ref="SMIL.soundLevel.attrib"/>
|
|
759
|
+
<xs:attributeGroup ref="SMIL.MediaClip.attrib"/>
|
|
760
|
+
<xs:attributeGroup ref="SMIL.MediaClip.attrib.deprecated"/>
|
|
761
|
+
<xs:attribute name="begin"/>
|
|
762
|
+
<xs:attribute name="dur"/>
|
|
763
|
+
<xs:attribute name="end"/>
|
|
764
|
+
<xs:attribute name="repeatCount"/>
|
|
765
|
+
<xs:attribute name="repeatDur"/>
|
|
766
|
+
<xs:attribute name="repeat"/>
|
|
767
|
+
<xs:attribute name="restart" default="default">
|
|
768
|
+
<xs:simpleType>
|
|
769
|
+
<xs:restriction base="xs:token">
|
|
770
|
+
<xs:enumeration value="always"/>
|
|
771
|
+
<xs:enumeration value="whenNotActive"/>
|
|
772
|
+
<xs:enumeration value="never"/>
|
|
773
|
+
<xs:enumeration value="default"/>
|
|
774
|
+
</xs:restriction>
|
|
775
|
+
</xs:simpleType>
|
|
776
|
+
</xs:attribute>
|
|
777
|
+
<xs:attribute name="restartDefault" default="inherit">
|
|
778
|
+
<xs:simpleType>
|
|
779
|
+
<xs:restriction base="xs:token">
|
|
780
|
+
<xs:enumeration value="inherit"/>
|
|
781
|
+
<xs:enumeration value="always"/>
|
|
782
|
+
<xs:enumeration value="never"/>
|
|
783
|
+
<xs:enumeration value="whenNotActive"/>
|
|
784
|
+
</xs:restriction>
|
|
785
|
+
</xs:simpleType>
|
|
786
|
+
</xs:attribute>
|
|
787
|
+
<xs:attribute name="syncBehavior" default="default">
|
|
788
|
+
<xs:simpleType>
|
|
789
|
+
<xs:restriction base="xs:token">
|
|
790
|
+
<xs:enumeration value="canSlip"/>
|
|
791
|
+
<xs:enumeration value="locked"/>
|
|
792
|
+
<xs:enumeration value="independent"/>
|
|
793
|
+
<xs:enumeration value="default"/>
|
|
794
|
+
</xs:restriction>
|
|
795
|
+
</xs:simpleType>
|
|
796
|
+
</xs:attribute>
|
|
797
|
+
<xs:attribute name="syncTolerance" default="default"/>
|
|
798
|
+
<xs:attribute name="syncBehaviorDefault" default="inherit">
|
|
799
|
+
<xs:simpleType>
|
|
800
|
+
<xs:restriction base="xs:token">
|
|
801
|
+
<xs:enumeration value="canSlip"/>
|
|
802
|
+
<xs:enumeration value="locked"/>
|
|
803
|
+
<xs:enumeration value="independent"/>
|
|
804
|
+
<xs:enumeration value="inherit"/>
|
|
805
|
+
</xs:restriction>
|
|
806
|
+
</xs:simpleType>
|
|
807
|
+
</xs:attribute>
|
|
808
|
+
<xs:attribute name="syncToleranceDefault" default="inherit"/>
|
|
809
|
+
<xs:attribute name="fillDefault" default="inherit">
|
|
810
|
+
<xs:simpleType>
|
|
811
|
+
<xs:restriction base="xs:token">
|
|
812
|
+
<xs:enumeration value="remove"/>
|
|
813
|
+
<xs:enumeration value="freeze"/>
|
|
814
|
+
<xs:enumeration value="hold"/>
|
|
815
|
+
<xs:enumeration value="transition"/>
|
|
816
|
+
<xs:enumeration value="auto"/>
|
|
817
|
+
<xs:enumeration value="inherit"/>
|
|
818
|
+
</xs:restriction>
|
|
819
|
+
</xs:simpleType>
|
|
820
|
+
</xs:attribute>
|
|
821
|
+
<xs:attribute name="endsync" default="media"/>
|
|
822
|
+
<xs:attribute name="fill" default="default">
|
|
823
|
+
<xs:simpleType>
|
|
824
|
+
<xs:restriction base="xs:token">
|
|
825
|
+
<xs:enumeration value="remove"/>
|
|
826
|
+
<xs:enumeration value="freeze"/>
|
|
827
|
+
<xs:enumeration value="hold"/>
|
|
828
|
+
<xs:enumeration value="transition"/>
|
|
829
|
+
<xs:enumeration value="auto"/>
|
|
830
|
+
<xs:enumeration value="default"/>
|
|
831
|
+
</xs:restriction>
|
|
832
|
+
</xs:simpleType>
|
|
833
|
+
</xs:attribute>
|
|
834
|
+
<xs:attribute name="systemAudioDesc">
|
|
835
|
+
<xs:simpleType>
|
|
836
|
+
<xs:restriction base="xs:token">
|
|
837
|
+
<xs:enumeration value="on"/>
|
|
838
|
+
<xs:enumeration value="off"/>
|
|
839
|
+
</xs:restriction>
|
|
840
|
+
</xs:simpleType>
|
|
841
|
+
</xs:attribute>
|
|
842
|
+
<xs:attribute name="systemBaseProfile" type="xs:NMTOKEN"/>
|
|
843
|
+
<xs:attribute name="systemBitrate"/>
|
|
844
|
+
<xs:attribute name="systemCaptions">
|
|
845
|
+
<xs:simpleType>
|
|
846
|
+
<xs:restriction base="xs:token">
|
|
847
|
+
<xs:enumeration value="on"/>
|
|
848
|
+
<xs:enumeration value="off"/>
|
|
849
|
+
</xs:restriction>
|
|
850
|
+
</xs:simpleType>
|
|
851
|
+
</xs:attribute>
|
|
852
|
+
<xs:attribute name="systemComponent"/>
|
|
853
|
+
<xs:attribute name="systemCPU" type="xs:NMTOKEN"/>
|
|
854
|
+
<xs:attribute name="systemLanguage"/>
|
|
855
|
+
<xs:attribute name="systemOperatingSystem" type="xs:NMTOKEN"/>
|
|
856
|
+
<xs:attribute name="systemOverdubOrSubtitle">
|
|
857
|
+
<xs:simpleType>
|
|
858
|
+
<xs:restriction base="xs:token">
|
|
859
|
+
<xs:enumeration value="overdub"/>
|
|
860
|
+
<xs:enumeration value="subtitle"/>
|
|
861
|
+
</xs:restriction>
|
|
862
|
+
</xs:simpleType>
|
|
863
|
+
</xs:attribute>
|
|
864
|
+
<xs:attribute name="systemScreenDepth"/>
|
|
865
|
+
<xs:attribute name="systemScreenSize"/>
|
|
866
|
+
<xs:attribute name="systemVersion">
|
|
867
|
+
<xs:simpleType>
|
|
868
|
+
<xs:restriction base="xs:token">
|
|
869
|
+
<xs:enumeration value="3.0"/>
|
|
870
|
+
</xs:restriction>
|
|
871
|
+
</xs:simpleType>
|
|
872
|
+
</xs:attribute>
|
|
873
|
+
<xs:attribute name="system-bitrate"/>
|
|
874
|
+
<xs:attribute name="system-captions">
|
|
875
|
+
<xs:simpleType>
|
|
876
|
+
<xs:restriction base="xs:token">
|
|
877
|
+
<xs:enumeration value="on"/>
|
|
878
|
+
<xs:enumeration value="off"/>
|
|
879
|
+
</xs:restriction>
|
|
880
|
+
</xs:simpleType>
|
|
881
|
+
</xs:attribute>
|
|
882
|
+
<xs:attribute name="system-language"/>
|
|
883
|
+
<xs:attribute name="system-overdub-or-caption">
|
|
884
|
+
<xs:simpleType>
|
|
885
|
+
<xs:restriction base="xs:token">
|
|
886
|
+
<xs:enumeration value="overdub"/>
|
|
887
|
+
<xs:enumeration value="caption"/>
|
|
888
|
+
</xs:restriction>
|
|
889
|
+
</xs:simpleType>
|
|
890
|
+
</xs:attribute>
|
|
891
|
+
<xs:attribute name="system-screen-depth"/>
|
|
892
|
+
<xs:attribute name="system-screen-size"/>
|
|
893
|
+
<xs:attribute name="systemRequired"/>
|
|
894
|
+
<xs:attribute name="system-required"/>
|
|
895
|
+
<xs:attribute name="customTest"/>
|
|
896
|
+
<xs:attribute name="region"/>
|
|
897
|
+
<xs:attribute name="transIn"/>
|
|
898
|
+
<xs:attribute name="transOut"/>
|
|
899
|
+
<xs:attribute name="top" default="auto"/>
|
|
900
|
+
<xs:attribute name="bottom" default="auto"/>
|
|
901
|
+
<xs:attribute name="left" default="auto"/>
|
|
902
|
+
<xs:attribute name="right" default="auto"/>
|
|
903
|
+
<xs:attribute name="height" default="auto"/>
|
|
904
|
+
<xs:attribute name="width" default="auto"/>
|
|
905
|
+
<xs:attribute name="backgroundColor"/>
|
|
906
|
+
<xs:attribute name="backgroundOpacity" default="100%"/>
|
|
907
|
+
<xs:attribute name="fit">
|
|
908
|
+
<xs:simpleType>
|
|
909
|
+
<xs:restriction base="xs:token">
|
|
910
|
+
<xs:enumeration value="hidden"/>
|
|
911
|
+
<xs:enumeration value="fill"/>
|
|
912
|
+
<xs:enumeration value="meet"/>
|
|
913
|
+
<xs:enumeration value="meetBest"/>
|
|
914
|
+
<xs:enumeration value="scroll"/>
|
|
915
|
+
<xs:enumeration value="slice"/>
|
|
916
|
+
</xs:restriction>
|
|
917
|
+
</xs:simpleType>
|
|
918
|
+
</xs:attribute>
|
|
919
|
+
<xs:attribute name="z-index"/>
|
|
920
|
+
<xs:attribute name="regPoint"/>
|
|
921
|
+
<xs:attribute name="regAlign">
|
|
922
|
+
<xs:simpleType>
|
|
923
|
+
<xs:restriction base="xs:token">
|
|
924
|
+
<xs:enumeration value="topLeft"/>
|
|
925
|
+
<xs:enumeration value="topMid"/>
|
|
926
|
+
<xs:enumeration value="topRight"/>
|
|
927
|
+
<xs:enumeration value="midLeft"/>
|
|
928
|
+
<xs:enumeration value="center"/>
|
|
929
|
+
<xs:enumeration value="midRight"/>
|
|
930
|
+
<xs:enumeration value="bottomLeft"/>
|
|
931
|
+
<xs:enumeration value="bottomMid"/>
|
|
932
|
+
<xs:enumeration value="bottomRight"/>
|
|
933
|
+
</xs:restriction>
|
|
934
|
+
</xs:simpleType>
|
|
935
|
+
</xs:attribute>
|
|
936
|
+
<xs:attribute name="mediaAlign">
|
|
937
|
+
<xs:simpleType>
|
|
938
|
+
<xs:restriction base="xs:token">
|
|
939
|
+
<xs:enumeration value="topLeft"/>
|
|
940
|
+
<xs:enumeration value="topMid"/>
|
|
941
|
+
<xs:enumeration value="topRight"/>
|
|
942
|
+
<xs:enumeration value="midLeft"/>
|
|
943
|
+
<xs:enumeration value="center"/>
|
|
944
|
+
<xs:enumeration value="midRight"/>
|
|
945
|
+
<xs:enumeration value="bottomLeft"/>
|
|
946
|
+
<xs:enumeration value="bottomMid"/>
|
|
947
|
+
<xs:enumeration value="bottomRight"/>
|
|
948
|
+
</xs:restriction>
|
|
949
|
+
</xs:simpleType>
|
|
950
|
+
</xs:attribute>
|
|
951
|
+
<xs:attribute name="tabindex"/>
|
|
952
|
+
<xs:attribute name="paramGroup" type="xs:NMTOKEN"/>
|
|
953
|
+
<xs:attribute name="expr"/>
|
|
954
|
+
<xs:attributeGroup ref="SMIL.Core.attrib"/>
|
|
955
|
+
<xs:attributeGroup ref="SMIL.I18n.attrib"/>
|
|
956
|
+
<xs:attributeGroup ref="SMIL.Description.attrib"/>
|
|
957
|
+
<xs:attributeGroup ref="SMIL.MediaRenderAttributes.attrib"/>
|
|
958
|
+
<xs:attributeGroup ref="SMIL.MediaOpacity.attrib"/>
|
|
959
|
+
<xs:attributeGroup ref="SMIL.MediaPanZoom.attrib"/>
|
|
960
|
+
<xs:attributeGroup ref="SMIL.soundAlign.attrib"/>
|
|
961
|
+
<xs:attribute name="src" type="URI.datatype"/>
|
|
962
|
+
<xs:attribute name="type" type="ContentType.datatype"/>
|
|
963
|
+
<xs:attribute name="mediaRepeat" default="preserve">
|
|
964
|
+
<xs:simpleType>
|
|
965
|
+
<xs:restriction base="xs:token">
|
|
966
|
+
<xs:enumeration value="preserve"/>
|
|
967
|
+
<xs:enumeration value="strip"/>
|
|
968
|
+
</xs:restriction>
|
|
969
|
+
</xs:simpleType>
|
|
970
|
+
</xs:attribute>
|
|
971
|
+
</xs:extension>
|
|
972
|
+
</xs:complexContent>
|
|
973
|
+
</xs:complexType>
|
|
974
|
+
</xs:element>
|
|
975
|
+
<xs:element name="text" substitutionGroup="SMIL.media-object">
|
|
976
|
+
<xs:complexType>
|
|
977
|
+
<xs:complexContent>
|
|
978
|
+
<xs:extension base="SMIL.text.content">
|
|
979
|
+
<xs:attributeGroup ref="SMIL.soundLevel.attrib"/>
|
|
980
|
+
<xs:attributeGroup ref="SMIL.MediaClip.attrib"/>
|
|
981
|
+
<xs:attributeGroup ref="SMIL.MediaClip.attrib.deprecated"/>
|
|
982
|
+
<xs:attribute name="begin"/>
|
|
983
|
+
<xs:attribute name="dur"/>
|
|
984
|
+
<xs:attribute name="end"/>
|
|
985
|
+
<xs:attribute name="repeatCount"/>
|
|
986
|
+
<xs:attribute name="repeatDur"/>
|
|
987
|
+
<xs:attribute name="repeat"/>
|
|
988
|
+
<xs:attribute name="restart" default="default">
|
|
989
|
+
<xs:simpleType>
|
|
990
|
+
<xs:restriction base="xs:token">
|
|
991
|
+
<xs:enumeration value="always"/>
|
|
992
|
+
<xs:enumeration value="whenNotActive"/>
|
|
993
|
+
<xs:enumeration value="never"/>
|
|
994
|
+
<xs:enumeration value="default"/>
|
|
995
|
+
</xs:restriction>
|
|
996
|
+
</xs:simpleType>
|
|
997
|
+
</xs:attribute>
|
|
998
|
+
<xs:attribute name="restartDefault" default="inherit">
|
|
999
|
+
<xs:simpleType>
|
|
1000
|
+
<xs:restriction base="xs:token">
|
|
1001
|
+
<xs:enumeration value="inherit"/>
|
|
1002
|
+
<xs:enumeration value="always"/>
|
|
1003
|
+
<xs:enumeration value="never"/>
|
|
1004
|
+
<xs:enumeration value="whenNotActive"/>
|
|
1005
|
+
</xs:restriction>
|
|
1006
|
+
</xs:simpleType>
|
|
1007
|
+
</xs:attribute>
|
|
1008
|
+
<xs:attribute name="syncBehavior" default="default">
|
|
1009
|
+
<xs:simpleType>
|
|
1010
|
+
<xs:restriction base="xs:token">
|
|
1011
|
+
<xs:enumeration value="canSlip"/>
|
|
1012
|
+
<xs:enumeration value="locked"/>
|
|
1013
|
+
<xs:enumeration value="independent"/>
|
|
1014
|
+
<xs:enumeration value="default"/>
|
|
1015
|
+
</xs:restriction>
|
|
1016
|
+
</xs:simpleType>
|
|
1017
|
+
</xs:attribute>
|
|
1018
|
+
<xs:attribute name="syncTolerance" default="default"/>
|
|
1019
|
+
<xs:attribute name="syncBehaviorDefault" default="inherit">
|
|
1020
|
+
<xs:simpleType>
|
|
1021
|
+
<xs:restriction base="xs:token">
|
|
1022
|
+
<xs:enumeration value="canSlip"/>
|
|
1023
|
+
<xs:enumeration value="locked"/>
|
|
1024
|
+
<xs:enumeration value="independent"/>
|
|
1025
|
+
<xs:enumeration value="inherit"/>
|
|
1026
|
+
</xs:restriction>
|
|
1027
|
+
</xs:simpleType>
|
|
1028
|
+
</xs:attribute>
|
|
1029
|
+
<xs:attribute name="syncToleranceDefault" default="inherit"/>
|
|
1030
|
+
<xs:attribute name="fillDefault" default="inherit">
|
|
1031
|
+
<xs:simpleType>
|
|
1032
|
+
<xs:restriction base="xs:token">
|
|
1033
|
+
<xs:enumeration value="remove"/>
|
|
1034
|
+
<xs:enumeration value="freeze"/>
|
|
1035
|
+
<xs:enumeration value="hold"/>
|
|
1036
|
+
<xs:enumeration value="transition"/>
|
|
1037
|
+
<xs:enumeration value="auto"/>
|
|
1038
|
+
<xs:enumeration value="inherit"/>
|
|
1039
|
+
</xs:restriction>
|
|
1040
|
+
</xs:simpleType>
|
|
1041
|
+
</xs:attribute>
|
|
1042
|
+
<xs:attribute name="endsync" default="media"/>
|
|
1043
|
+
<xs:attribute name="fill" default="default">
|
|
1044
|
+
<xs:simpleType>
|
|
1045
|
+
<xs:restriction base="xs:token">
|
|
1046
|
+
<xs:enumeration value="remove"/>
|
|
1047
|
+
<xs:enumeration value="freeze"/>
|
|
1048
|
+
<xs:enumeration value="hold"/>
|
|
1049
|
+
<xs:enumeration value="transition"/>
|
|
1050
|
+
<xs:enumeration value="auto"/>
|
|
1051
|
+
<xs:enumeration value="default"/>
|
|
1052
|
+
</xs:restriction>
|
|
1053
|
+
</xs:simpleType>
|
|
1054
|
+
</xs:attribute>
|
|
1055
|
+
<xs:attribute name="systemAudioDesc">
|
|
1056
|
+
<xs:simpleType>
|
|
1057
|
+
<xs:restriction base="xs:token">
|
|
1058
|
+
<xs:enumeration value="on"/>
|
|
1059
|
+
<xs:enumeration value="off"/>
|
|
1060
|
+
</xs:restriction>
|
|
1061
|
+
</xs:simpleType>
|
|
1062
|
+
</xs:attribute>
|
|
1063
|
+
<xs:attribute name="systemBaseProfile" type="xs:NMTOKEN"/>
|
|
1064
|
+
<xs:attribute name="systemBitrate"/>
|
|
1065
|
+
<xs:attribute name="systemCaptions">
|
|
1066
|
+
<xs:simpleType>
|
|
1067
|
+
<xs:restriction base="xs:token">
|
|
1068
|
+
<xs:enumeration value="on"/>
|
|
1069
|
+
<xs:enumeration value="off"/>
|
|
1070
|
+
</xs:restriction>
|
|
1071
|
+
</xs:simpleType>
|
|
1072
|
+
</xs:attribute>
|
|
1073
|
+
<xs:attribute name="systemComponent"/>
|
|
1074
|
+
<xs:attribute name="systemCPU" type="xs:NMTOKEN"/>
|
|
1075
|
+
<xs:attribute name="systemLanguage"/>
|
|
1076
|
+
<xs:attribute name="systemOperatingSystem" type="xs:NMTOKEN"/>
|
|
1077
|
+
<xs:attribute name="systemOverdubOrSubtitle">
|
|
1078
|
+
<xs:simpleType>
|
|
1079
|
+
<xs:restriction base="xs:token">
|
|
1080
|
+
<xs:enumeration value="overdub"/>
|
|
1081
|
+
<xs:enumeration value="subtitle"/>
|
|
1082
|
+
</xs:restriction>
|
|
1083
|
+
</xs:simpleType>
|
|
1084
|
+
</xs:attribute>
|
|
1085
|
+
<xs:attribute name="systemScreenDepth"/>
|
|
1086
|
+
<xs:attribute name="systemScreenSize"/>
|
|
1087
|
+
<xs:attribute name="systemVersion">
|
|
1088
|
+
<xs:simpleType>
|
|
1089
|
+
<xs:restriction base="xs:token">
|
|
1090
|
+
<xs:enumeration value="3.0"/>
|
|
1091
|
+
</xs:restriction>
|
|
1092
|
+
</xs:simpleType>
|
|
1093
|
+
</xs:attribute>
|
|
1094
|
+
<xs:attribute name="system-bitrate"/>
|
|
1095
|
+
<xs:attribute name="system-captions">
|
|
1096
|
+
<xs:simpleType>
|
|
1097
|
+
<xs:restriction base="xs:token">
|
|
1098
|
+
<xs:enumeration value="on"/>
|
|
1099
|
+
<xs:enumeration value="off"/>
|
|
1100
|
+
</xs:restriction>
|
|
1101
|
+
</xs:simpleType>
|
|
1102
|
+
</xs:attribute>
|
|
1103
|
+
<xs:attribute name="system-language"/>
|
|
1104
|
+
<xs:attribute name="system-overdub-or-caption">
|
|
1105
|
+
<xs:simpleType>
|
|
1106
|
+
<xs:restriction base="xs:token">
|
|
1107
|
+
<xs:enumeration value="overdub"/>
|
|
1108
|
+
<xs:enumeration value="caption"/>
|
|
1109
|
+
</xs:restriction>
|
|
1110
|
+
</xs:simpleType>
|
|
1111
|
+
</xs:attribute>
|
|
1112
|
+
<xs:attribute name="system-screen-depth"/>
|
|
1113
|
+
<xs:attribute name="system-screen-size"/>
|
|
1114
|
+
<xs:attribute name="systemRequired"/>
|
|
1115
|
+
<xs:attribute name="system-required"/>
|
|
1116
|
+
<xs:attribute name="customTest"/>
|
|
1117
|
+
<xs:attribute name="region"/>
|
|
1118
|
+
<xs:attribute name="transIn"/>
|
|
1119
|
+
<xs:attribute name="transOut"/>
|
|
1120
|
+
<xs:attribute name="top" default="auto"/>
|
|
1121
|
+
<xs:attribute name="bottom" default="auto"/>
|
|
1122
|
+
<xs:attribute name="left" default="auto"/>
|
|
1123
|
+
<xs:attribute name="right" default="auto"/>
|
|
1124
|
+
<xs:attribute name="height" default="auto"/>
|
|
1125
|
+
<xs:attribute name="width" default="auto"/>
|
|
1126
|
+
<xs:attribute name="backgroundColor"/>
|
|
1127
|
+
<xs:attribute name="backgroundOpacity" default="100%"/>
|
|
1128
|
+
<xs:attribute name="fit">
|
|
1129
|
+
<xs:simpleType>
|
|
1130
|
+
<xs:restriction base="xs:token">
|
|
1131
|
+
<xs:enumeration value="hidden"/>
|
|
1132
|
+
<xs:enumeration value="fill"/>
|
|
1133
|
+
<xs:enumeration value="meet"/>
|
|
1134
|
+
<xs:enumeration value="meetBest"/>
|
|
1135
|
+
<xs:enumeration value="scroll"/>
|
|
1136
|
+
<xs:enumeration value="slice"/>
|
|
1137
|
+
</xs:restriction>
|
|
1138
|
+
</xs:simpleType>
|
|
1139
|
+
</xs:attribute>
|
|
1140
|
+
<xs:attribute name="z-index"/>
|
|
1141
|
+
<xs:attribute name="regPoint"/>
|
|
1142
|
+
<xs:attribute name="regAlign">
|
|
1143
|
+
<xs:simpleType>
|
|
1144
|
+
<xs:restriction base="xs:token">
|
|
1145
|
+
<xs:enumeration value="topLeft"/>
|
|
1146
|
+
<xs:enumeration value="topMid"/>
|
|
1147
|
+
<xs:enumeration value="topRight"/>
|
|
1148
|
+
<xs:enumeration value="midLeft"/>
|
|
1149
|
+
<xs:enumeration value="center"/>
|
|
1150
|
+
<xs:enumeration value="midRight"/>
|
|
1151
|
+
<xs:enumeration value="bottomLeft"/>
|
|
1152
|
+
<xs:enumeration value="bottomMid"/>
|
|
1153
|
+
<xs:enumeration value="bottomRight"/>
|
|
1154
|
+
</xs:restriction>
|
|
1155
|
+
</xs:simpleType>
|
|
1156
|
+
</xs:attribute>
|
|
1157
|
+
<xs:attribute name="mediaAlign">
|
|
1158
|
+
<xs:simpleType>
|
|
1159
|
+
<xs:restriction base="xs:token">
|
|
1160
|
+
<xs:enumeration value="topLeft"/>
|
|
1161
|
+
<xs:enumeration value="topMid"/>
|
|
1162
|
+
<xs:enumeration value="topRight"/>
|
|
1163
|
+
<xs:enumeration value="midLeft"/>
|
|
1164
|
+
<xs:enumeration value="center"/>
|
|
1165
|
+
<xs:enumeration value="midRight"/>
|
|
1166
|
+
<xs:enumeration value="bottomLeft"/>
|
|
1167
|
+
<xs:enumeration value="bottomMid"/>
|
|
1168
|
+
<xs:enumeration value="bottomRight"/>
|
|
1169
|
+
</xs:restriction>
|
|
1170
|
+
</xs:simpleType>
|
|
1171
|
+
</xs:attribute>
|
|
1172
|
+
<xs:attribute name="tabindex"/>
|
|
1173
|
+
<xs:attribute name="paramGroup" type="xs:NMTOKEN"/>
|
|
1174
|
+
<xs:attribute name="expr"/>
|
|
1175
|
+
<xs:attributeGroup ref="SMIL.Core.attrib"/>
|
|
1176
|
+
<xs:attributeGroup ref="SMIL.I18n.attrib"/>
|
|
1177
|
+
<xs:attributeGroup ref="SMIL.Description.attrib"/>
|
|
1178
|
+
<xs:attributeGroup ref="SMIL.MediaRenderAttributes.attrib"/>
|
|
1179
|
+
<xs:attributeGroup ref="SMIL.MediaOpacity.attrib"/>
|
|
1180
|
+
<xs:attributeGroup ref="SMIL.MediaPanZoom.attrib"/>
|
|
1181
|
+
<xs:attributeGroup ref="SMIL.soundAlign.attrib"/>
|
|
1182
|
+
<xs:attribute name="src" type="URI.datatype"/>
|
|
1183
|
+
<xs:attribute name="type" type="ContentType.datatype"/>
|
|
1184
|
+
<xs:attribute name="mediaRepeat" default="preserve">
|
|
1185
|
+
<xs:simpleType>
|
|
1186
|
+
<xs:restriction base="xs:token">
|
|
1187
|
+
<xs:enumeration value="preserve"/>
|
|
1188
|
+
<xs:enumeration value="strip"/>
|
|
1189
|
+
</xs:restriction>
|
|
1190
|
+
</xs:simpleType>
|
|
1191
|
+
</xs:attribute>
|
|
1192
|
+
</xs:extension>
|
|
1193
|
+
</xs:complexContent>
|
|
1194
|
+
</xs:complexType>
|
|
1195
|
+
</xs:element>
|
|
1196
|
+
<xs:element name="textstream" substitutionGroup="SMIL.media-object">
|
|
1197
|
+
<xs:complexType>
|
|
1198
|
+
<xs:complexContent>
|
|
1199
|
+
<xs:extension base="SMIL.textstream.content">
|
|
1200
|
+
<xs:attributeGroup ref="SMIL.soundLevel.attrib"/>
|
|
1201
|
+
<xs:attributeGroup ref="SMIL.MediaClip.attrib"/>
|
|
1202
|
+
<xs:attributeGroup ref="SMIL.MediaClip.attrib.deprecated"/>
|
|
1203
|
+
<xs:attribute name="begin"/>
|
|
1204
|
+
<xs:attribute name="dur"/>
|
|
1205
|
+
<xs:attribute name="end"/>
|
|
1206
|
+
<xs:attribute name="repeatCount"/>
|
|
1207
|
+
<xs:attribute name="repeatDur"/>
|
|
1208
|
+
<xs:attribute name="repeat"/>
|
|
1209
|
+
<xs:attribute name="restart" default="default">
|
|
1210
|
+
<xs:simpleType>
|
|
1211
|
+
<xs:restriction base="xs:token">
|
|
1212
|
+
<xs:enumeration value="always"/>
|
|
1213
|
+
<xs:enumeration value="whenNotActive"/>
|
|
1214
|
+
<xs:enumeration value="never"/>
|
|
1215
|
+
<xs:enumeration value="default"/>
|
|
1216
|
+
</xs:restriction>
|
|
1217
|
+
</xs:simpleType>
|
|
1218
|
+
</xs:attribute>
|
|
1219
|
+
<xs:attribute name="restartDefault" default="inherit">
|
|
1220
|
+
<xs:simpleType>
|
|
1221
|
+
<xs:restriction base="xs:token">
|
|
1222
|
+
<xs:enumeration value="inherit"/>
|
|
1223
|
+
<xs:enumeration value="always"/>
|
|
1224
|
+
<xs:enumeration value="never"/>
|
|
1225
|
+
<xs:enumeration value="whenNotActive"/>
|
|
1226
|
+
</xs:restriction>
|
|
1227
|
+
</xs:simpleType>
|
|
1228
|
+
</xs:attribute>
|
|
1229
|
+
<xs:attribute name="syncBehavior" default="default">
|
|
1230
|
+
<xs:simpleType>
|
|
1231
|
+
<xs:restriction base="xs:token">
|
|
1232
|
+
<xs:enumeration value="canSlip"/>
|
|
1233
|
+
<xs:enumeration value="locked"/>
|
|
1234
|
+
<xs:enumeration value="independent"/>
|
|
1235
|
+
<xs:enumeration value="default"/>
|
|
1236
|
+
</xs:restriction>
|
|
1237
|
+
</xs:simpleType>
|
|
1238
|
+
</xs:attribute>
|
|
1239
|
+
<xs:attribute name="syncTolerance" default="default"/>
|
|
1240
|
+
<xs:attribute name="syncBehaviorDefault" default="inherit">
|
|
1241
|
+
<xs:simpleType>
|
|
1242
|
+
<xs:restriction base="xs:token">
|
|
1243
|
+
<xs:enumeration value="canSlip"/>
|
|
1244
|
+
<xs:enumeration value="locked"/>
|
|
1245
|
+
<xs:enumeration value="independent"/>
|
|
1246
|
+
<xs:enumeration value="inherit"/>
|
|
1247
|
+
</xs:restriction>
|
|
1248
|
+
</xs:simpleType>
|
|
1249
|
+
</xs:attribute>
|
|
1250
|
+
<xs:attribute name="syncToleranceDefault" default="inherit"/>
|
|
1251
|
+
<xs:attribute name="fillDefault" default="inherit">
|
|
1252
|
+
<xs:simpleType>
|
|
1253
|
+
<xs:restriction base="xs:token">
|
|
1254
|
+
<xs:enumeration value="remove"/>
|
|
1255
|
+
<xs:enumeration value="freeze"/>
|
|
1256
|
+
<xs:enumeration value="hold"/>
|
|
1257
|
+
<xs:enumeration value="transition"/>
|
|
1258
|
+
<xs:enumeration value="auto"/>
|
|
1259
|
+
<xs:enumeration value="inherit"/>
|
|
1260
|
+
</xs:restriction>
|
|
1261
|
+
</xs:simpleType>
|
|
1262
|
+
</xs:attribute>
|
|
1263
|
+
<xs:attribute name="endsync" default="media"/>
|
|
1264
|
+
<xs:attribute name="fill" default="default">
|
|
1265
|
+
<xs:simpleType>
|
|
1266
|
+
<xs:restriction base="xs:token">
|
|
1267
|
+
<xs:enumeration value="remove"/>
|
|
1268
|
+
<xs:enumeration value="freeze"/>
|
|
1269
|
+
<xs:enumeration value="hold"/>
|
|
1270
|
+
<xs:enumeration value="transition"/>
|
|
1271
|
+
<xs:enumeration value="auto"/>
|
|
1272
|
+
<xs:enumeration value="default"/>
|
|
1273
|
+
</xs:restriction>
|
|
1274
|
+
</xs:simpleType>
|
|
1275
|
+
</xs:attribute>
|
|
1276
|
+
<xs:attribute name="systemAudioDesc">
|
|
1277
|
+
<xs:simpleType>
|
|
1278
|
+
<xs:restriction base="xs:token">
|
|
1279
|
+
<xs:enumeration value="on"/>
|
|
1280
|
+
<xs:enumeration value="off"/>
|
|
1281
|
+
</xs:restriction>
|
|
1282
|
+
</xs:simpleType>
|
|
1283
|
+
</xs:attribute>
|
|
1284
|
+
<xs:attribute name="systemBaseProfile" type="xs:NMTOKEN"/>
|
|
1285
|
+
<xs:attribute name="systemBitrate"/>
|
|
1286
|
+
<xs:attribute name="systemCaptions">
|
|
1287
|
+
<xs:simpleType>
|
|
1288
|
+
<xs:restriction base="xs:token">
|
|
1289
|
+
<xs:enumeration value="on"/>
|
|
1290
|
+
<xs:enumeration value="off"/>
|
|
1291
|
+
</xs:restriction>
|
|
1292
|
+
</xs:simpleType>
|
|
1293
|
+
</xs:attribute>
|
|
1294
|
+
<xs:attribute name="systemComponent"/>
|
|
1295
|
+
<xs:attribute name="systemCPU" type="xs:NMTOKEN"/>
|
|
1296
|
+
<xs:attribute name="systemLanguage"/>
|
|
1297
|
+
<xs:attribute name="systemOperatingSystem" type="xs:NMTOKEN"/>
|
|
1298
|
+
<xs:attribute name="systemOverdubOrSubtitle">
|
|
1299
|
+
<xs:simpleType>
|
|
1300
|
+
<xs:restriction base="xs:token">
|
|
1301
|
+
<xs:enumeration value="overdub"/>
|
|
1302
|
+
<xs:enumeration value="subtitle"/>
|
|
1303
|
+
</xs:restriction>
|
|
1304
|
+
</xs:simpleType>
|
|
1305
|
+
</xs:attribute>
|
|
1306
|
+
<xs:attribute name="systemScreenDepth"/>
|
|
1307
|
+
<xs:attribute name="systemScreenSize"/>
|
|
1308
|
+
<xs:attribute name="systemVersion">
|
|
1309
|
+
<xs:simpleType>
|
|
1310
|
+
<xs:restriction base="xs:token">
|
|
1311
|
+
<xs:enumeration value="3.0"/>
|
|
1312
|
+
</xs:restriction>
|
|
1313
|
+
</xs:simpleType>
|
|
1314
|
+
</xs:attribute>
|
|
1315
|
+
<xs:attribute name="system-bitrate"/>
|
|
1316
|
+
<xs:attribute name="system-captions">
|
|
1317
|
+
<xs:simpleType>
|
|
1318
|
+
<xs:restriction base="xs:token">
|
|
1319
|
+
<xs:enumeration value="on"/>
|
|
1320
|
+
<xs:enumeration value="off"/>
|
|
1321
|
+
</xs:restriction>
|
|
1322
|
+
</xs:simpleType>
|
|
1323
|
+
</xs:attribute>
|
|
1324
|
+
<xs:attribute name="system-language"/>
|
|
1325
|
+
<xs:attribute name="system-overdub-or-caption">
|
|
1326
|
+
<xs:simpleType>
|
|
1327
|
+
<xs:restriction base="xs:token">
|
|
1328
|
+
<xs:enumeration value="overdub"/>
|
|
1329
|
+
<xs:enumeration value="caption"/>
|
|
1330
|
+
</xs:restriction>
|
|
1331
|
+
</xs:simpleType>
|
|
1332
|
+
</xs:attribute>
|
|
1333
|
+
<xs:attribute name="system-screen-depth"/>
|
|
1334
|
+
<xs:attribute name="system-screen-size"/>
|
|
1335
|
+
<xs:attribute name="systemRequired"/>
|
|
1336
|
+
<xs:attribute name="system-required"/>
|
|
1337
|
+
<xs:attribute name="customTest"/>
|
|
1338
|
+
<xs:attribute name="region"/>
|
|
1339
|
+
<xs:attribute name="transIn"/>
|
|
1340
|
+
<xs:attribute name="transOut"/>
|
|
1341
|
+
<xs:attribute name="top" default="auto"/>
|
|
1342
|
+
<xs:attribute name="bottom" default="auto"/>
|
|
1343
|
+
<xs:attribute name="left" default="auto"/>
|
|
1344
|
+
<xs:attribute name="right" default="auto"/>
|
|
1345
|
+
<xs:attribute name="height" default="auto"/>
|
|
1346
|
+
<xs:attribute name="width" default="auto"/>
|
|
1347
|
+
<xs:attribute name="backgroundColor"/>
|
|
1348
|
+
<xs:attribute name="backgroundOpacity" default="100%"/>
|
|
1349
|
+
<xs:attribute name="fit">
|
|
1350
|
+
<xs:simpleType>
|
|
1351
|
+
<xs:restriction base="xs:token">
|
|
1352
|
+
<xs:enumeration value="hidden"/>
|
|
1353
|
+
<xs:enumeration value="fill"/>
|
|
1354
|
+
<xs:enumeration value="meet"/>
|
|
1355
|
+
<xs:enumeration value="meetBest"/>
|
|
1356
|
+
<xs:enumeration value="scroll"/>
|
|
1357
|
+
<xs:enumeration value="slice"/>
|
|
1358
|
+
</xs:restriction>
|
|
1359
|
+
</xs:simpleType>
|
|
1360
|
+
</xs:attribute>
|
|
1361
|
+
<xs:attribute name="z-index"/>
|
|
1362
|
+
<xs:attribute name="regPoint"/>
|
|
1363
|
+
<xs:attribute name="regAlign">
|
|
1364
|
+
<xs:simpleType>
|
|
1365
|
+
<xs:restriction base="xs:token">
|
|
1366
|
+
<xs:enumeration value="topLeft"/>
|
|
1367
|
+
<xs:enumeration value="topMid"/>
|
|
1368
|
+
<xs:enumeration value="topRight"/>
|
|
1369
|
+
<xs:enumeration value="midLeft"/>
|
|
1370
|
+
<xs:enumeration value="center"/>
|
|
1371
|
+
<xs:enumeration value="midRight"/>
|
|
1372
|
+
<xs:enumeration value="bottomLeft"/>
|
|
1373
|
+
<xs:enumeration value="bottomMid"/>
|
|
1374
|
+
<xs:enumeration value="bottomRight"/>
|
|
1375
|
+
</xs:restriction>
|
|
1376
|
+
</xs:simpleType>
|
|
1377
|
+
</xs:attribute>
|
|
1378
|
+
<xs:attribute name="mediaAlign">
|
|
1379
|
+
<xs:simpleType>
|
|
1380
|
+
<xs:restriction base="xs:token">
|
|
1381
|
+
<xs:enumeration value="topLeft"/>
|
|
1382
|
+
<xs:enumeration value="topMid"/>
|
|
1383
|
+
<xs:enumeration value="topRight"/>
|
|
1384
|
+
<xs:enumeration value="midLeft"/>
|
|
1385
|
+
<xs:enumeration value="center"/>
|
|
1386
|
+
<xs:enumeration value="midRight"/>
|
|
1387
|
+
<xs:enumeration value="bottomLeft"/>
|
|
1388
|
+
<xs:enumeration value="bottomMid"/>
|
|
1389
|
+
<xs:enumeration value="bottomRight"/>
|
|
1390
|
+
</xs:restriction>
|
|
1391
|
+
</xs:simpleType>
|
|
1392
|
+
</xs:attribute>
|
|
1393
|
+
<xs:attribute name="tabindex"/>
|
|
1394
|
+
<xs:attribute name="paramGroup" type="xs:NMTOKEN"/>
|
|
1395
|
+
<xs:attribute name="expr"/>
|
|
1396
|
+
<xs:attributeGroup ref="SMIL.Core.attrib"/>
|
|
1397
|
+
<xs:attributeGroup ref="SMIL.I18n.attrib"/>
|
|
1398
|
+
<xs:attributeGroup ref="SMIL.Description.attrib"/>
|
|
1399
|
+
<xs:attributeGroup ref="SMIL.MediaRenderAttributes.attrib"/>
|
|
1400
|
+
<xs:attributeGroup ref="SMIL.MediaOpacity.attrib"/>
|
|
1401
|
+
<xs:attributeGroup ref="SMIL.MediaPanZoom.attrib"/>
|
|
1402
|
+
<xs:attributeGroup ref="SMIL.soundAlign.attrib"/>
|
|
1403
|
+
<xs:attribute name="src" type="URI.datatype"/>
|
|
1404
|
+
<xs:attribute name="type" type="ContentType.datatype"/>
|
|
1405
|
+
<xs:attribute name="mediaRepeat" default="preserve">
|
|
1406
|
+
<xs:simpleType>
|
|
1407
|
+
<xs:restriction base="xs:token">
|
|
1408
|
+
<xs:enumeration value="preserve"/>
|
|
1409
|
+
<xs:enumeration value="strip"/>
|
|
1410
|
+
</xs:restriction>
|
|
1411
|
+
</xs:simpleType>
|
|
1412
|
+
</xs:attribute>
|
|
1413
|
+
</xs:extension>
|
|
1414
|
+
</xs:complexContent>
|
|
1415
|
+
</xs:complexType>
|
|
1416
|
+
</xs:element>
|
|
1417
|
+
<xs:element name="video" substitutionGroup="SMIL.media-object">
|
|
1418
|
+
<xs:complexType>
|
|
1419
|
+
<xs:complexContent>
|
|
1420
|
+
<xs:extension base="SMIL.video.content">
|
|
1421
|
+
<xs:attributeGroup ref="SMIL.soundLevel.attrib"/>
|
|
1422
|
+
<xs:attributeGroup ref="SMIL.MediaClip.attrib"/>
|
|
1423
|
+
<xs:attributeGroup ref="SMIL.MediaClip.attrib.deprecated"/>
|
|
1424
|
+
<xs:attribute name="begin"/>
|
|
1425
|
+
<xs:attribute name="dur"/>
|
|
1426
|
+
<xs:attribute name="end"/>
|
|
1427
|
+
<xs:attribute name="repeatCount"/>
|
|
1428
|
+
<xs:attribute name="repeatDur"/>
|
|
1429
|
+
<xs:attribute name="repeat"/>
|
|
1430
|
+
<xs:attribute name="restart" default="default">
|
|
1431
|
+
<xs:simpleType>
|
|
1432
|
+
<xs:restriction base="xs:token">
|
|
1433
|
+
<xs:enumeration value="always"/>
|
|
1434
|
+
<xs:enumeration value="whenNotActive"/>
|
|
1435
|
+
<xs:enumeration value="never"/>
|
|
1436
|
+
<xs:enumeration value="default"/>
|
|
1437
|
+
</xs:restriction>
|
|
1438
|
+
</xs:simpleType>
|
|
1439
|
+
</xs:attribute>
|
|
1440
|
+
<xs:attribute name="restartDefault" default="inherit">
|
|
1441
|
+
<xs:simpleType>
|
|
1442
|
+
<xs:restriction base="xs:token">
|
|
1443
|
+
<xs:enumeration value="inherit"/>
|
|
1444
|
+
<xs:enumeration value="always"/>
|
|
1445
|
+
<xs:enumeration value="never"/>
|
|
1446
|
+
<xs:enumeration value="whenNotActive"/>
|
|
1447
|
+
</xs:restriction>
|
|
1448
|
+
</xs:simpleType>
|
|
1449
|
+
</xs:attribute>
|
|
1450
|
+
<xs:attribute name="syncBehavior" default="default">
|
|
1451
|
+
<xs:simpleType>
|
|
1452
|
+
<xs:restriction base="xs:token">
|
|
1453
|
+
<xs:enumeration value="canSlip"/>
|
|
1454
|
+
<xs:enumeration value="locked"/>
|
|
1455
|
+
<xs:enumeration value="independent"/>
|
|
1456
|
+
<xs:enumeration value="default"/>
|
|
1457
|
+
</xs:restriction>
|
|
1458
|
+
</xs:simpleType>
|
|
1459
|
+
</xs:attribute>
|
|
1460
|
+
<xs:attribute name="syncTolerance" default="default"/>
|
|
1461
|
+
<xs:attribute name="syncBehaviorDefault" default="inherit">
|
|
1462
|
+
<xs:simpleType>
|
|
1463
|
+
<xs:restriction base="xs:token">
|
|
1464
|
+
<xs:enumeration value="canSlip"/>
|
|
1465
|
+
<xs:enumeration value="locked"/>
|
|
1466
|
+
<xs:enumeration value="independent"/>
|
|
1467
|
+
<xs:enumeration value="inherit"/>
|
|
1468
|
+
</xs:restriction>
|
|
1469
|
+
</xs:simpleType>
|
|
1470
|
+
</xs:attribute>
|
|
1471
|
+
<xs:attribute name="syncToleranceDefault" default="inherit"/>
|
|
1472
|
+
<xs:attribute name="fillDefault" default="inherit">
|
|
1473
|
+
<xs:simpleType>
|
|
1474
|
+
<xs:restriction base="xs:token">
|
|
1475
|
+
<xs:enumeration value="remove"/>
|
|
1476
|
+
<xs:enumeration value="freeze"/>
|
|
1477
|
+
<xs:enumeration value="hold"/>
|
|
1478
|
+
<xs:enumeration value="transition"/>
|
|
1479
|
+
<xs:enumeration value="auto"/>
|
|
1480
|
+
<xs:enumeration value="inherit"/>
|
|
1481
|
+
</xs:restriction>
|
|
1482
|
+
</xs:simpleType>
|
|
1483
|
+
</xs:attribute>
|
|
1484
|
+
<xs:attribute name="endsync" default="media"/>
|
|
1485
|
+
<xs:attribute name="fill" default="default">
|
|
1486
|
+
<xs:simpleType>
|
|
1487
|
+
<xs:restriction base="xs:token">
|
|
1488
|
+
<xs:enumeration value="remove"/>
|
|
1489
|
+
<xs:enumeration value="freeze"/>
|
|
1490
|
+
<xs:enumeration value="hold"/>
|
|
1491
|
+
<xs:enumeration value="transition"/>
|
|
1492
|
+
<xs:enumeration value="auto"/>
|
|
1493
|
+
<xs:enumeration value="default"/>
|
|
1494
|
+
</xs:restriction>
|
|
1495
|
+
</xs:simpleType>
|
|
1496
|
+
</xs:attribute>
|
|
1497
|
+
<xs:attribute name="systemAudioDesc">
|
|
1498
|
+
<xs:simpleType>
|
|
1499
|
+
<xs:restriction base="xs:token">
|
|
1500
|
+
<xs:enumeration value="on"/>
|
|
1501
|
+
<xs:enumeration value="off"/>
|
|
1502
|
+
</xs:restriction>
|
|
1503
|
+
</xs:simpleType>
|
|
1504
|
+
</xs:attribute>
|
|
1505
|
+
<xs:attribute name="systemBaseProfile" type="xs:NMTOKEN"/>
|
|
1506
|
+
<xs:attribute name="systemBitrate"/>
|
|
1507
|
+
<xs:attribute name="systemCaptions">
|
|
1508
|
+
<xs:simpleType>
|
|
1509
|
+
<xs:restriction base="xs:token">
|
|
1510
|
+
<xs:enumeration value="on"/>
|
|
1511
|
+
<xs:enumeration value="off"/>
|
|
1512
|
+
</xs:restriction>
|
|
1513
|
+
</xs:simpleType>
|
|
1514
|
+
</xs:attribute>
|
|
1515
|
+
<xs:attribute name="systemComponent"/>
|
|
1516
|
+
<xs:attribute name="systemCPU" type="xs:NMTOKEN"/>
|
|
1517
|
+
<xs:attribute name="systemLanguage"/>
|
|
1518
|
+
<xs:attribute name="systemOperatingSystem" type="xs:NMTOKEN"/>
|
|
1519
|
+
<xs:attribute name="systemOverdubOrSubtitle">
|
|
1520
|
+
<xs:simpleType>
|
|
1521
|
+
<xs:restriction base="xs:token">
|
|
1522
|
+
<xs:enumeration value="overdub"/>
|
|
1523
|
+
<xs:enumeration value="subtitle"/>
|
|
1524
|
+
</xs:restriction>
|
|
1525
|
+
</xs:simpleType>
|
|
1526
|
+
</xs:attribute>
|
|
1527
|
+
<xs:attribute name="systemScreenDepth"/>
|
|
1528
|
+
<xs:attribute name="systemScreenSize"/>
|
|
1529
|
+
<xs:attribute name="systemVersion">
|
|
1530
|
+
<xs:simpleType>
|
|
1531
|
+
<xs:restriction base="xs:token">
|
|
1532
|
+
<xs:enumeration value="3.0"/>
|
|
1533
|
+
</xs:restriction>
|
|
1534
|
+
</xs:simpleType>
|
|
1535
|
+
</xs:attribute>
|
|
1536
|
+
<xs:attribute name="system-bitrate"/>
|
|
1537
|
+
<xs:attribute name="system-captions">
|
|
1538
|
+
<xs:simpleType>
|
|
1539
|
+
<xs:restriction base="xs:token">
|
|
1540
|
+
<xs:enumeration value="on"/>
|
|
1541
|
+
<xs:enumeration value="off"/>
|
|
1542
|
+
</xs:restriction>
|
|
1543
|
+
</xs:simpleType>
|
|
1544
|
+
</xs:attribute>
|
|
1545
|
+
<xs:attribute name="system-language"/>
|
|
1546
|
+
<xs:attribute name="system-overdub-or-caption">
|
|
1547
|
+
<xs:simpleType>
|
|
1548
|
+
<xs:restriction base="xs:token">
|
|
1549
|
+
<xs:enumeration value="overdub"/>
|
|
1550
|
+
<xs:enumeration value="caption"/>
|
|
1551
|
+
</xs:restriction>
|
|
1552
|
+
</xs:simpleType>
|
|
1553
|
+
</xs:attribute>
|
|
1554
|
+
<xs:attribute name="system-screen-depth"/>
|
|
1555
|
+
<xs:attribute name="system-screen-size"/>
|
|
1556
|
+
<xs:attribute name="systemRequired"/>
|
|
1557
|
+
<xs:attribute name="system-required"/>
|
|
1558
|
+
<xs:attribute name="customTest"/>
|
|
1559
|
+
<xs:attribute name="region"/>
|
|
1560
|
+
<xs:attribute name="transIn"/>
|
|
1561
|
+
<xs:attribute name="transOut"/>
|
|
1562
|
+
<xs:attribute name="top" default="auto"/>
|
|
1563
|
+
<xs:attribute name="bottom" default="auto"/>
|
|
1564
|
+
<xs:attribute name="left" default="auto"/>
|
|
1565
|
+
<xs:attribute name="right" default="auto"/>
|
|
1566
|
+
<xs:attribute name="height" default="auto"/>
|
|
1567
|
+
<xs:attribute name="width" default="auto"/>
|
|
1568
|
+
<xs:attribute name="backgroundColor"/>
|
|
1569
|
+
<xs:attribute name="backgroundOpacity" default="100%"/>
|
|
1570
|
+
<xs:attribute name="fit">
|
|
1571
|
+
<xs:simpleType>
|
|
1572
|
+
<xs:restriction base="xs:token">
|
|
1573
|
+
<xs:enumeration value="hidden"/>
|
|
1574
|
+
<xs:enumeration value="fill"/>
|
|
1575
|
+
<xs:enumeration value="meet"/>
|
|
1576
|
+
<xs:enumeration value="meetBest"/>
|
|
1577
|
+
<xs:enumeration value="scroll"/>
|
|
1578
|
+
<xs:enumeration value="slice"/>
|
|
1579
|
+
</xs:restriction>
|
|
1580
|
+
</xs:simpleType>
|
|
1581
|
+
</xs:attribute>
|
|
1582
|
+
<xs:attribute name="z-index"/>
|
|
1583
|
+
<xs:attribute name="regPoint"/>
|
|
1584
|
+
<xs:attribute name="regAlign">
|
|
1585
|
+
<xs:simpleType>
|
|
1586
|
+
<xs:restriction base="xs:token">
|
|
1587
|
+
<xs:enumeration value="topLeft"/>
|
|
1588
|
+
<xs:enumeration value="topMid"/>
|
|
1589
|
+
<xs:enumeration value="topRight"/>
|
|
1590
|
+
<xs:enumeration value="midLeft"/>
|
|
1591
|
+
<xs:enumeration value="center"/>
|
|
1592
|
+
<xs:enumeration value="midRight"/>
|
|
1593
|
+
<xs:enumeration value="bottomLeft"/>
|
|
1594
|
+
<xs:enumeration value="bottomMid"/>
|
|
1595
|
+
<xs:enumeration value="bottomRight"/>
|
|
1596
|
+
</xs:restriction>
|
|
1597
|
+
</xs:simpleType>
|
|
1598
|
+
</xs:attribute>
|
|
1599
|
+
<xs:attribute name="mediaAlign">
|
|
1600
|
+
<xs:simpleType>
|
|
1601
|
+
<xs:restriction base="xs:token">
|
|
1602
|
+
<xs:enumeration value="topLeft"/>
|
|
1603
|
+
<xs:enumeration value="topMid"/>
|
|
1604
|
+
<xs:enumeration value="topRight"/>
|
|
1605
|
+
<xs:enumeration value="midLeft"/>
|
|
1606
|
+
<xs:enumeration value="center"/>
|
|
1607
|
+
<xs:enumeration value="midRight"/>
|
|
1608
|
+
<xs:enumeration value="bottomLeft"/>
|
|
1609
|
+
<xs:enumeration value="bottomMid"/>
|
|
1610
|
+
<xs:enumeration value="bottomRight"/>
|
|
1611
|
+
</xs:restriction>
|
|
1612
|
+
</xs:simpleType>
|
|
1613
|
+
</xs:attribute>
|
|
1614
|
+
<xs:attribute name="tabindex"/>
|
|
1615
|
+
<xs:attribute name="paramGroup" type="xs:NMTOKEN"/>
|
|
1616
|
+
<xs:attribute name="expr"/>
|
|
1617
|
+
<xs:attributeGroup ref="SMIL.Core.attrib"/>
|
|
1618
|
+
<xs:attributeGroup ref="SMIL.I18n.attrib"/>
|
|
1619
|
+
<xs:attributeGroup ref="SMIL.Description.attrib"/>
|
|
1620
|
+
<xs:attributeGroup ref="SMIL.MediaRenderAttributes.attrib"/>
|
|
1621
|
+
<xs:attributeGroup ref="SMIL.MediaOpacity.attrib"/>
|
|
1622
|
+
<xs:attributeGroup ref="SMIL.MediaPanZoom.attrib"/>
|
|
1623
|
+
<xs:attributeGroup ref="SMIL.soundAlign.attrib"/>
|
|
1624
|
+
<xs:attribute name="src" type="URI.datatype"/>
|
|
1625
|
+
<xs:attribute name="type" type="ContentType.datatype"/>
|
|
1626
|
+
<xs:attribute name="mediaRepeat" default="preserve">
|
|
1627
|
+
<xs:simpleType>
|
|
1628
|
+
<xs:restriction base="xs:token">
|
|
1629
|
+
<xs:enumeration value="preserve"/>
|
|
1630
|
+
<xs:enumeration value="strip"/>
|
|
1631
|
+
</xs:restriction>
|
|
1632
|
+
</xs:simpleType>
|
|
1633
|
+
</xs:attribute>
|
|
1634
|
+
</xs:extension>
|
|
1635
|
+
</xs:complexContent>
|
|
1636
|
+
</xs:complexType>
|
|
1637
|
+
</xs:element>
|
|
1638
|
+
<!-- BrushMedia -->
|
|
1639
|
+
<xs:complexType name="SMIL.brush.content">
|
|
1640
|
+
<xs:complexContent>
|
|
1641
|
+
<xs:extension base="SMIL.mo-content"/>
|
|
1642
|
+
</xs:complexContent>
|
|
1643
|
+
</xs:complexType>
|
|
1644
|
+
<xs:element name="brush" substitutionGroup="SMIL.BrushMedia.content"/>
|
|
1645
|
+
</xs:schema>
|
|
1646
|
+
<!-- end of SMIL-media.mod -->
|