testeranto 0.189.0 → 0.197.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.
Files changed (632) hide show
  1. package/ALL_LICENSES.txt +11246 -0
  2. package/LICENSE +21 -0
  3. package/default-project.json +44 -0
  4. package/design-editor/DesignEditor.tsx +247 -0
  5. package/design-editor/index.ts +2 -0
  6. package/design-editor/server.ts +121 -0
  7. package/design-editor/types.ts +16 -0
  8. package/designs/default-project.json +210 -0
  9. package/dist/common/design-editor/DesignEditor.js +239 -0
  10. package/dist/common/design-editor/index.js +18 -0
  11. package/dist/common/design-editor/server.js +98 -0
  12. package/dist/common/design-editor/types.js +2 -0
  13. package/dist/common/src/App.js +11 -1
  14. package/dist/common/src/PM/PM_WithEslintAndTsc.js +8 -1
  15. package/dist/common/src/PM/base.js +1 -0
  16. package/dist/common/src/PM/main.js +370 -4
  17. package/dist/common/src/PM/node.js +4 -2
  18. package/dist/common/src/PM/pure.js +15 -57
  19. package/dist/common/src/PM/web.js +5 -3
  20. package/dist/common/src/Pure.test.js +46 -78
  21. package/dist/common/src/ReportServer.js +8 -2
  22. package/dist/common/src/build.js +1 -1
  23. package/dist/common/src/components/DesignEditorPage.js +169 -0
  24. package/dist/common/src/components/pure/AppFrame.js +62 -13
  25. package/dist/common/src/components/pure/ModalContent.test/implementation.js +13 -11
  26. package/dist/common/src/components/pure/ModalContent.test/index.js +48 -2
  27. package/dist/common/src/components/pure/ModalContent.test/specification.js +2 -2
  28. package/dist/common/src/components/pure/NavBar.js +9 -10
  29. package/dist/common/src/components/pure/ProcessManager.js +112 -0
  30. package/dist/common/src/components/pure/ProcessManagerView.js +237 -0
  31. package/dist/common/src/components/pure/ProjectPageView.test/implementation.js +134 -106
  32. package/dist/common/src/components/pure/ProjectsPageView.js +18 -12
  33. package/dist/common/src/components/pure/SettingsButton.js +4 -74
  34. package/dist/common/src/components/pure/SingleProcessView.js +214 -0
  35. package/dist/common/src/components/pure/TestPageView.js +457 -78
  36. package/dist/common/src/components/pure/TestPageView.test/implementation.js +90 -135
  37. package/dist/common/src/components/stateful/FeaturesReporter.js +1 -1
  38. package/dist/common/src/components/stateful/FileTree.js +40 -0
  39. package/dist/common/src/components/stateful/ProcessManagerPage.js +112 -0
  40. package/dist/common/src/components/stateful/ProjectPage.js +6 -5
  41. package/dist/common/src/components/stateful/ProjectsPage.js +32 -6
  42. package/dist/common/src/components/stateful/SettingsPage.js +72 -0
  43. package/dist/common/src/components/stateful/SingleProcessPage.js +147 -0
  44. package/dist/common/src/components/stateful/TestPage.js +104 -8
  45. package/dist/common/src/components/stateful/TextEditorPage.js +154 -0
  46. package/dist/common/src/esbuildConfigs/inputFilesPlugin.js +3 -4
  47. package/dist/common/src/lib/BaseSuite.js +6 -3
  48. package/dist/common/src/lib/BaseSuite.test/mock.js +17 -30
  49. package/dist/common/src/lib/BaseSuite.test/test.js +33 -31
  50. package/dist/common/src/lib/abstractBase.js +28 -8
  51. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +12 -6
  52. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +12 -12
  53. package/dist/common/src/lib/basebuilder.js +1 -9
  54. package/dist/common/src/lib/classBuilder.js +3 -3
  55. package/dist/common/src/lib/core.js +3 -5
  56. package/dist/common/src/lib/index.js +11 -14
  57. package/dist/common/src/lib/pmProxy.js +37 -14
  58. package/dist/common/src/lib/pmProxy.test/adapter.js +12 -2
  59. package/dist/common/src/lib/pmProxy.test/implementation.js +73 -43
  60. package/dist/common/src/lib/pmProxy.test/specification.js +3 -0
  61. package/dist/common/src/utils/api.js +44 -33
  62. package/dist/common/src/utils/logFiles.js +48 -22
  63. package/dist/common/src/utils/makePrompt.js +5 -4
  64. package/dist/common/testeranto.config.js +15 -13
  65. package/dist/common/tsconfig.common.tsbuildinfo +1 -1
  66. package/dist/module/design-editor/DesignEditor.js +203 -0
  67. package/dist/module/design-editor/index.js +2 -0
  68. package/dist/module/design-editor/server.js +92 -0
  69. package/dist/module/src/App.js +11 -1
  70. package/dist/module/src/PM/PM_WithEslintAndTsc.js +8 -1
  71. package/dist/module/src/PM/base.js +1 -0
  72. package/dist/module/src/PM/main.js +370 -4
  73. package/dist/module/src/PM/node.js +4 -2
  74. package/dist/module/src/PM/pure.js +15 -57
  75. package/dist/module/src/PM/web.js +5 -3
  76. package/dist/module/src/Pure.test.js +46 -78
  77. package/dist/module/src/ReportServer.js +8 -2
  78. package/dist/module/src/build.js +1 -1
  79. package/dist/module/src/components/DesignEditorPage.js +132 -0
  80. package/dist/module/src/components/pure/AppFrame.js +30 -11
  81. package/dist/module/src/components/pure/ModalContent.test/implementation.js +13 -11
  82. package/dist/module/src/components/pure/ModalContent.test/index.js +48 -2
  83. package/dist/module/src/components/pure/ModalContent.test/specification.js +2 -2
  84. package/dist/module/src/components/pure/NavBar.js +10 -11
  85. package/dist/module/src/components/pure/ProcessManager.js +75 -0
  86. package/dist/module/src/components/pure/ProcessManagerView.js +200 -0
  87. package/dist/module/src/components/pure/ProjectPageView.test/implementation.js +134 -106
  88. package/dist/module/src/components/pure/ProjectsPageView.js +20 -14
  89. package/dist/module/src/components/pure/SettingsButton.js +5 -42
  90. package/dist/module/src/components/pure/SingleProcessView.js +214 -0
  91. package/dist/module/src/components/pure/TestPageView.js +425 -76
  92. package/dist/module/src/components/pure/TestPageView.test/implementation.js +90 -135
  93. package/dist/module/src/components/stateful/FeaturesReporter.js +1 -1
  94. package/dist/module/src/components/stateful/FileTree.js +33 -0
  95. package/dist/module/src/components/stateful/ProcessManagerPage.js +75 -0
  96. package/dist/module/src/components/stateful/ProjectPage.js +6 -5
  97. package/dist/module/src/components/stateful/ProjectsPage.js +32 -6
  98. package/dist/module/src/components/stateful/SettingsPage.js +35 -0
  99. package/dist/module/src/components/stateful/SingleProcessPage.js +110 -0
  100. package/dist/module/src/components/stateful/TestPage.js +104 -8
  101. package/dist/module/src/components/stateful/TextEditorPage.js +117 -0
  102. package/dist/module/src/esbuildConfigs/inputFilesPlugin.js +3 -4
  103. package/dist/module/src/lib/BaseSuite.js +6 -3
  104. package/dist/module/src/lib/BaseSuite.test/mock.js +17 -30
  105. package/dist/module/src/lib/BaseSuite.test/test.js +33 -31
  106. package/dist/module/src/lib/abstractBase.js +28 -8
  107. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +12 -6
  108. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +12 -12
  109. package/dist/module/src/lib/basebuilder.js +1 -9
  110. package/dist/module/src/lib/classBuilder.js +3 -3
  111. package/dist/module/src/lib/core.js +3 -5
  112. package/dist/module/src/lib/index.js +11 -14
  113. package/dist/module/src/lib/pmProxy.js +37 -14
  114. package/dist/module/src/lib/pmProxy.test/adapter.js +12 -2
  115. package/dist/module/src/lib/pmProxy.test/implementation.js +73 -43
  116. package/dist/module/src/lib/pmProxy.test/specification.js +3 -0
  117. package/dist/module/src/utils/api.js +45 -34
  118. package/dist/module/src/utils/logFiles.js +45 -20
  119. package/dist/module/src/utils/makePrompt.js +5 -4
  120. package/dist/module/testeranto.config.js +15 -13
  121. package/dist/module/tsconfig.module.tsbuildinfo +1 -1
  122. package/dist/prebuild/App.css +54 -513
  123. package/dist/prebuild/App.js +13296 -2438
  124. package/dist/prebuild/ReportServer.mjs +104 -6
  125. package/dist/prebuild/build.mjs +8 -5
  126. package/dist/prebuild/run.mjs +389 -37
  127. package/dist/types/design-editor/DesignEditor.d.ts +18 -0
  128. package/dist/types/design-editor/server.d.ts +1 -0
  129. package/dist/types/{PM → src/PM}/index.d.ts +1 -1
  130. package/dist/types/{PM → src/PM}/main.d.ts +19 -0
  131. package/dist/types/{PM → src/PM}/pure.d.ts +7 -7
  132. package/dist/types/{Pure.test.d.ts → src/Pure.test.d.ts} +13 -1
  133. package/dist/types/src/components/DesignEditorPage.d.ts +1 -0
  134. package/dist/types/{components → src/components}/pure/AppFrame.d.ts +3 -1
  135. package/dist/types/{components/pure/ProjectPageView.test → src/components/pure/ModalContent.test}/index.d.ts +2 -1
  136. package/dist/types/{components → src/components}/pure/NavBar.d.ts +4 -0
  137. package/dist/types/src/components/pure/ProcessManager.d.ts +8 -0
  138. package/dist/types/src/components/pure/ProcessManagerView.d.ts +20 -0
  139. package/dist/types/{components → src/components}/pure/ProjectsPageView.d.ts +1 -1
  140. package/dist/types/src/components/pure/SettingsButton.d.ts +2 -0
  141. package/dist/types/{components → src/components}/pure/TestPageView.test/implementation.d.ts +3 -2
  142. package/dist/types/src/components/pure/TestPageView.test/index.d.ts +3 -0
  143. package/dist/types/src/components/stateful/FileTree.d.ts +8 -0
  144. package/dist/types/src/components/stateful/ProcessManagerPage.d.ts +2 -0
  145. package/dist/types/src/components/stateful/SettingsPage.d.ts +2 -0
  146. package/dist/types/src/components/stateful/SingleProcessPage.d.ts +2 -0
  147. package/dist/types/src/components/stateful/TextEditorPage.d.ts +1 -0
  148. package/dist/types/{lib → src/lib}/BaseSuite.test/mock.d.ts +3 -3
  149. package/dist/types/{lib → src/lib}/basebuilder.d.ts +1 -1
  150. package/dist/types/{lib → src/lib}/index.d.ts +1 -1
  151. package/dist/types/{lib → src/lib}/pmProxy.test/mockPMBase.d.ts +1 -1
  152. package/dist/types/src/run.d.ts +1 -0
  153. package/dist/types/src/utils/logFiles.d.ts +71 -0
  154. package/dist/types/tsconfig.types.tsbuildinfo +1 -1
  155. package/docs/test-page-components.md +91 -0
  156. package/package.json +27 -8
  157. package/src/App.tsx +11 -0
  158. package/src/PM/PM_WithEslintAndTsc.ts +9 -4
  159. package/src/PM/base.ts +1 -0
  160. package/src/PM/index.ts +1 -1
  161. package/src/PM/main.ts +424 -8
  162. package/src/PM/node.ts +5 -2
  163. package/src/PM/pure.ts +23 -61
  164. package/src/PM/web.ts +7 -3
  165. package/src/Pure.test.ts +63 -99
  166. package/src/README.md +20 -1
  167. package/src/ReportServer.ts +10 -3
  168. package/src/app.scss +169 -0
  169. package/src/build.ts +5 -1
  170. package/src/components/DesignEditorPage.tsx +169 -0
  171. package/src/components/pure/AppFrame.tsx +121 -16
  172. package/src/components/pure/ModalContent.test/implementation.tsx +14 -12
  173. package/src/components/pure/ModalContent.test/index.tsx +58 -6
  174. package/src/components/pure/ModalContent.test/specification.ts +2 -2
  175. package/src/components/pure/NavBar.tsx +31 -15
  176. package/src/components/pure/ProcessManager.tsx +117 -0
  177. package/src/components/pure/ProcessManagerView.tsx +414 -0
  178. package/src/components/pure/ProjectPageView.test/implementation.tsx +136 -106
  179. package/src/components/pure/ProjectPageView.test/index.tsx +0 -2
  180. package/src/components/pure/ProjectsPageView.tsx +41 -31
  181. package/src/components/pure/SettingsButton.tsx +7 -62
  182. package/src/components/pure/SingleProcessView.tsx +235 -0
  183. package/src/components/pure/TestPageView.test/implementation.ts +115 -147
  184. package/src/components/pure/TestPageView.test/specification.ts +0 -1
  185. package/src/components/pure/TestPageView.tsx +821 -100
  186. package/src/components/stateful/FeaturesReporter.tsx +1 -1
  187. package/src/components/stateful/FileTree.tsx +66 -0
  188. package/src/components/stateful/ProcessManagerPage.tsx +108 -0
  189. package/src/components/stateful/ProjectPage.tsx +6 -5
  190. package/src/components/stateful/ProjectsPage.tsx +36 -7
  191. package/src/components/stateful/SettingsPage.tsx +82 -0
  192. package/src/components/stateful/SingleProcessPage.tsx +155 -0
  193. package/src/components/stateful/TestPage.tsx +128 -20
  194. package/src/components/stateful/TextEditorPage.tsx +170 -0
  195. package/src/esbuildConfigs/inputFilesPlugin.ts +3 -4
  196. package/src/lib/BaseSuite.test/mock.ts +20 -41
  197. package/src/lib/BaseSuite.test/test.ts +38 -42
  198. package/src/lib/BaseSuite.ts +6 -3
  199. package/src/lib/abstractBase.ts +33 -14
  200. package/src/lib/baseBuilder.test/baseBuilder.test.adapter.ts +14 -7
  201. package/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts +15 -14
  202. package/src/lib/basebuilder.ts +4 -9
  203. package/src/lib/classBuilder.ts +8 -10
  204. package/src/lib/core.ts +3 -19
  205. package/src/lib/index.ts +19 -19
  206. package/src/lib/pmProxy.test/adapter.ts +10 -2
  207. package/src/lib/pmProxy.test/implementation.ts +108 -57
  208. package/src/lib/pmProxy.test/mockPMBase.ts +1 -1
  209. package/src/lib/pmProxy.test/specification.ts +11 -0
  210. package/src/lib/pmProxy.ts +40 -15
  211. package/src/style.scss +3 -502
  212. package/src/templates/frontpage.html +317 -40
  213. package/src/templates/frontpage.md +79 -0
  214. package/src/themes.scss +40 -8
  215. package/src/utils/api.ts +47 -44
  216. package/src/utils/logFiles.ts +57 -23
  217. package/src/utils/makePrompt.ts +5 -4
  218. package/stargazers.txt +15 -0
  219. package/stargzers.js +68 -0
  220. package/testeranto/App.css +54 -513
  221. package/testeranto/App.js +13296 -2438
  222. package/testeranto/bundles/node/core/{chunk-L67RWZ4W.mjs → chunk-4CSH4UJE.mjs} +89 -116
  223. package/testeranto/bundles/node/core/{chunk-JBB5E3XJ.mjs → chunk-4JTDLQVA.mjs} +4 -9
  224. package/testeranto/bundles/node/core/chunk-C3APFDUV.mjs +70 -0
  225. package/testeranto/bundles/node/core/src/lib/BaseSuite.test/node.test.mjs +30 -42
  226. package/testeranto/bundles/node/core/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +27 -31
  227. package/testeranto/bundles/node/core/src/lib/classBuilder.test/classBuilder.test.mjs +4 -16
  228. package/testeranto/bundles/node/core/src/lib/core.test/core.test.mjs +16 -27
  229. package/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs +468 -517
  230. package/testeranto/bundles/pure/core/{chunk-KHJ35R7C.mjs → chunk-62UVCSQC.mjs} +97 -72
  231. package/testeranto/bundles/pure/core/src/Pure.test.mjs +56 -74
  232. package/testeranto/bundles/pure/core/src/lib/BaseSuite.test/pure.test.mjs +39 -66
  233. package/testeranto/bundles/pure/core/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +25 -19
  234. package/testeranto/metafiles/node/core.json +2906 -0
  235. package/testeranto/{bundles/pure/core/metafile.json → metafiles/pure/core.json} +66 -81
  236. package/testeranto/metafiles/web/core.json +546 -0
  237. package/testeranto/reports/core/config.json +0 -24
  238. package/testeranto/reports/core/src/Pure.test/pure/prompt.txt +1 -1
  239. package/testeranto/reports/core/src/Pure.test/pure/type_errors.txt +59 -94
  240. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/error.log +2 -55
  241. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/info.log +0 -2
  242. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/error.log +3 -33
  243. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/info.log +0 -4
  244. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/error.log +3 -0
  245. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/info.log +0 -2
  246. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/prompt.txt +2 -2
  247. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/type_errors.txt +38 -90
  248. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/prompt.txt +1 -1
  249. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +38 -90
  250. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/error.log +2 -0
  251. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.txt +10 -0
  252. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +3 -3
  253. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/stdout.log +6 -2
  254. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +4 -4
  255. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +22 -45
  256. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.txt +10 -0
  257. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +1 -1
  258. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +22 -45
  259. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/error.log +2 -0
  260. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/prompt.txt +4 -4
  261. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/tests.json +10 -10
  262. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +38 -90
  263. package/testeranto/reports/core/src/lib/core.test/core.test/node/prompt.txt +4 -4
  264. package/testeranto/reports/core/src/lib/core.test/core.test/node/type_errors.txt +5 -24
  265. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/lint_errors.txt +6 -14
  266. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/prompt.txt +3 -3
  267. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stderr.log +88 -0
  268. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stdout.log +10 -0
  269. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/tests.json +33 -43
  270. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/type_errors.txt +17 -43
  271. package/testeranto/reports/core/summary.json +15 -51
  272. package/testeranto/reportsweb_build_errors +546 -0
  273. package/testeranto.config.ts +16 -13
  274. package/tsc.log +37 -16
  275. package/tsconfig.json +3 -2
  276. package/CNAME +0 -1
  277. package/README.html +0 -302
  278. package/dist/common/src/PM/layers/base/PM_Base.js +0 -1
  279. package/dist/common/src/PM/layers/base/components/PageOperations.js +0 -1
  280. package/dist/common/src/PM/layers/base/components/PageOperations.testeranto.js +0 -1
  281. package/dist/common/src/PM/layers/linting/components/Linter.js +0 -1
  282. package/dist/common/src/PM/layers/linting/components/TypeChecker.js +0 -1
  283. package/dist/common/src/PM/layers/main/components/SidecarManager.js +0 -1
  284. package/dist/common/src/PM/layers/main/components/TestRunner.js +0 -1
  285. package/dist/module/src/PM/layers/base/PM_Base.js +0 -1
  286. package/dist/module/src/PM/layers/base/components/PageOperations.js +0 -1
  287. package/dist/module/src/PM/layers/base/components/PageOperations.testeranto.js +0 -1
  288. package/dist/module/src/PM/layers/linting/components/Linter.js +0 -1
  289. package/dist/module/src/PM/layers/linting/components/TypeChecker.js +0 -1
  290. package/dist/module/src/PM/layers/main/components/SidecarManager.js +0 -1
  291. package/dist/module/src/PM/layers/main/components/TestRunner.js +0 -1
  292. package/dist/tsconfig.tsbuildinfo +0 -1
  293. package/dist/types/PM/layers/base/components/PageOperations.d.ts +0 -0
  294. package/dist/types/PM/layers/base/components/PageOperations.testeranto.d.ts +0 -0
  295. package/dist/types/PM/layers/linting/components/Linter.d.ts +0 -0
  296. package/dist/types/PM/layers/linting/components/TypeChecker.d.ts +0 -0
  297. package/dist/types/PM/layers/main/components/SidecarManager.d.ts +0 -0
  298. package/dist/types/PM/layers/main/components/TestRunner.d.ts +0 -0
  299. package/dist/types/components/pure/SettingsButton.d.ts +0 -3
  300. package/dist/types/components/pure/TestPageView.test/index.d.ts +0 -32
  301. package/dist/types/utils/logFiles.d.ts +0 -7
  302. package/docs.html +0 -590
  303. package/example.css +0 -351
  304. package/index.html +0 -138
  305. package/scripts/compile-docs.js +0 -150
  306. package/smil30/SMIL-anim.mod.xsd +0 -163
  307. package/smil30/SMIL-control.mod.xsd +0 -73
  308. package/smil30/SMIL-layout.mod.xsd +0 -149
  309. package/smil30/SMIL-link.mod.xsd +0 -145
  310. package/smil30/SMIL-media.mod.xsd +0 -1646
  311. package/smil30/SMIL-metainformation.mod.xsd +0 -45
  312. package/smil30/SMIL-smiltext.mod.xsd +0 -353
  313. package/smil30/SMIL-state.mod.xsd +0 -133
  314. package/smil30/SMIL-struct.mod.xsd +0 -70
  315. package/smil30/SMIL-timing.mod.xsd +0 -105
  316. package/smil30/SMIL-transition.mod.xsd +0 -229
  317. package/smil30/SMIL.xsd +0 -63
  318. package/smil30/its.xsd +0 -42
  319. package/smil30/smil-attribs-1.mod.xsd +0 -610
  320. package/smil30/smil-datatypes-1.mod.xsd +0 -72
  321. package/smil30/smil-framework-1.mod.xsd +0 -45
  322. package/smil30/xml.xsd +0 -16
  323. package/src/App.scss +0 -123
  324. package/src/PM/layers/base/PM_Base.ts +0 -0
  325. package/src/PM/layers/base/components/PageOperations.testeranto.ts +0 -0
  326. package/src/PM/layers/base/components/PageOperations.ts +0 -0
  327. package/src/PM/layers/linting/components/Linter.ts +0 -0
  328. package/src/PM/layers/linting/components/TypeChecker.ts +0 -0
  329. package/src/PM/layers/main/components/SidecarManager.ts +0 -0
  330. package/src/PM/layers/main/components/TestRunner.ts +0 -0
  331. package/src/fonts.scss +0 -55
  332. package/style.css +0 -12175
  333. package/testeranto/bundles/node/core/chunk-ZQRRQYS4.mjs +0 -92
  334. package/testeranto/bundles/node/core/metafile.json +0 -5735
  335. package/testeranto/bundles/node/core/src/mothership/test.mjs +0 -24588
  336. package/testeranto/bundles/web/core/MPLUSRounded1c-Black-O75GP5JI.ttf +0 -0
  337. package/testeranto/bundles/web/core/MPLUSRounded1c-Bold-R524Q5BH.ttf +0 -0
  338. package/testeranto/bundles/web/core/MPLUSRounded1c-ExtraBold-C6GRMYVT.ttf +0 -0
  339. package/testeranto/bundles/web/core/MPLUSRounded1c-Light-WKN65Y2C.ttf +0 -0
  340. package/testeranto/bundles/web/core/MPLUSRounded1c-Medium-ZC4DWL7C.ttf +0 -0
  341. package/testeranto/bundles/web/core/MPLUSRounded1c-Regular-DT6EKZ3S.ttf +0 -0
  342. package/testeranto/bundles/web/core/MPLUSRounded1c-Thin-YWDNVG6M.ttf +0 -0
  343. package/testeranto/bundles/web/core/chunk-BADF3AZF.mjs +0 -108
  344. package/testeranto/bundles/web/core/chunk-BXV27S2S.mjs +0 -6252
  345. package/testeranto/bundles/web/core/chunk-EIYZKF2C.mjs +0 -223
  346. package/testeranto/bundles/web/core/chunk-FNXFUNA7.mjs +0 -28528
  347. package/testeranto/bundles/web/core/chunk-LU364HVS.mjs +0 -3311
  348. package/testeranto/bundles/web/core/chunk-QWII7WIM.mjs +0 -2281
  349. package/testeranto/bundles/web/core/chunk-VAYOSMXI.mjs +0 -21775
  350. package/testeranto/bundles/web/core/metafile.json +0 -18227
  351. package/testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.css +0 -12105
  352. package/testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.html +0 -15
  353. package/testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.mjs +0 -517
  354. package/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs +0 -166
  355. package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.css +0 -12105
  356. package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.html +0 -15
  357. package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.mjs +0 -93
  358. package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.css +0 -12105
  359. package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs +0 -343
  360. package/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.css +0 -12105
  361. package/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.mjs +0 -483
  362. package/testeranto/bundles/web/core/src/lib/BaseSuite.test/web.test.mjs +0 -394
  363. package/testeranto/bundles/web/core/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +0 -256
  364. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/debug.log +0 -0
  365. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/error.log +0 -22
  366. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/exit.log +0 -1
  367. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/info.log +0 -4
  368. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/lint_errors.txt +0 -2
  369. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/message.txt +0 -17
  370. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/prompt.txt +0 -18
  371. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/tests.json +0 -57
  372. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/type_errors.txt +0 -55
  373. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/warn.log +0 -0
  374. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/lint_errors.txt +0 -0
  375. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/message.txt +0 -17
  376. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/prompt.txt +0 -16
  377. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/suite-0/given-basicRender/then-4/butThen/features-reporter.png +0 -0
  378. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/tests.json +0 -76
  379. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/type_errors.txt +0 -80
  380. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/debug.log +0 -0
  381. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/error.log +0 -0
  382. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/exit.log +0 -0
  383. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/info.log +0 -4
  384. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/lint_errors.txt +0 -0
  385. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/message.txt +0 -17
  386. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/prompt.txt +0 -15
  387. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/suite-0/given-basicRender/then-2/butThen/modal-content.png +0 -0
  388. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/tests.json +0 -42
  389. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/type_errors.txt +0 -65
  390. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/warn.log +0 -0
  391. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +0 -2
  392. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/message.txt +0 -17
  393. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/prompt.txt +0 -16
  394. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/suite-0/given-basicRender/then-6/butThen/happy-state.png +0 -0
  395. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/suite-0/given-errorHandling/then-1/butThen/error-state.png +0 -0
  396. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/tests.json +0 -99
  397. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +0 -91
  398. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/lint_errors.txt +0 -0
  399. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/message.txt +0 -17
  400. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/prompt.txt +0 -18
  401. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/tests.json +0 -69
  402. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/type_errors.txt +0 -111
  403. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/lint_errors.txt +0 -0
  404. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/message.txt +0 -17
  405. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/prompt.txt +0 -15
  406. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/tests.json +0 -31
  407. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/type_errors.txt +0 -113
  408. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/lint_errors.txt +0 -0
  409. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/message.txt +0 -17
  410. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +0 -17
  411. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/suite-0/given-testInitialization/then-0/butThen/hello.txt +0 -1
  412. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/suite-0/given-testInitialization/then-1/butThen/artifact_test.txt +0 -1
  413. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +0 -71
  414. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +0 -65
  415. package/testeranto/reports/core/src/mothership/test/node/exit.log +0 -1
  416. package/testeranto/reports/core/src/mothership/test/node/lint_errors.txt +0 -0
  417. package/testeranto/reports/core/src/mothership/test/node/message.txt +0 -17
  418. package/testeranto/reports/core/src/mothership/test/node/prompt.txt +0 -14
  419. package/testeranto/reports/core/src/mothership/test/node/stderr.log +0 -27
  420. package/testeranto/reports/core/src/mothership/test/node/stdout.log +0 -8
  421. package/testeranto/reports/core/src/mothership/test/node/tests.json +0 -36
  422. package/testeranto/reports/core/src/mothership/test/node/type_errors.txt +0 -38
  423. package/videos/download-smil-xsd.sh +0 -29
  424. package/videos/project0/index.md +0 -72
  425. package/videos/project0/narration.json +0 -7
  426. package/videos/project0/narration.ssml +0 -58
  427. package/videos/project0/package.json +0 -21
  428. package/videos/project0/presentation.smil +0 -25
  429. package/videos/project0/smil30/SMIL-anim.mod.xsd +0 -163
  430. package/videos/project0/smil30/SMIL-anim.mod.xsd.1 +0 -163
  431. package/videos/project0/smil30/SMIL-anim.mod.xsd.2 +0 -163
  432. package/videos/project0/smil30/SMIL-control.mod.xsd +0 -73
  433. package/videos/project0/smil30/SMIL-control.mod.xsd.1 +0 -73
  434. package/videos/project0/smil30/SMIL-control.mod.xsd.2 +0 -73
  435. package/videos/project0/smil30/SMIL-layout.mod.xsd +0 -149
  436. package/videos/project0/smil30/SMIL-layout.mod.xsd.1 +0 -149
  437. package/videos/project0/smil30/SMIL-layout.mod.xsd.2 +0 -149
  438. package/videos/project0/smil30/SMIL-link.mod.xsd +0 -145
  439. package/videos/project0/smil30/SMIL-link.mod.xsd.1 +0 -145
  440. package/videos/project0/smil30/SMIL-link.mod.xsd.2 +0 -145
  441. package/videos/project0/smil30/SMIL-media.mod.xsd +0 -1646
  442. package/videos/project0/smil30/SMIL-media.mod.xsd.1 +0 -1646
  443. package/videos/project0/smil30/SMIL-media.mod.xsd.2 +0 -1646
  444. package/videos/project0/smil30/SMIL-metainformation.mod.xsd +0 -45
  445. package/videos/project0/smil30/SMIL-metainformation.mod.xsd.1 +0 -45
  446. package/videos/project0/smil30/SMIL-metainformation.mod.xsd.2 +0 -45
  447. package/videos/project0/smil30/SMIL-smiltext.mod.xsd +0 -353
  448. package/videos/project0/smil30/SMIL-smiltext.mod.xsd.1 +0 -353
  449. package/videos/project0/smil30/SMIL-smiltext.mod.xsd.2 +0 -353
  450. package/videos/project0/smil30/SMIL-state.mod.xsd +0 -133
  451. package/videos/project0/smil30/SMIL-state.mod.xsd.1 +0 -133
  452. package/videos/project0/smil30/SMIL-state.mod.xsd.2 +0 -133
  453. package/videos/project0/smil30/SMIL-struct.mod.xsd +0 -70
  454. package/videos/project0/smil30/SMIL-struct.mod.xsd.1 +0 -70
  455. package/videos/project0/smil30/SMIL-struct.mod.xsd.2 +0 -70
  456. package/videos/project0/smil30/SMIL-timing.mod.xsd +0 -105
  457. package/videos/project0/smil30/SMIL-timing.mod.xsd.1 +0 -105
  458. package/videos/project0/smil30/SMIL-timing.mod.xsd.2 +0 -105
  459. package/videos/project0/smil30/SMIL-transition.mod.xsd +0 -229
  460. package/videos/project0/smil30/SMIL-transition.mod.xsd.1 +0 -229
  461. package/videos/project0/smil30/SMIL-transition.mod.xsd.2 +0 -229
  462. package/videos/project0/smil30/SMIL.xsd +0 -63
  463. package/videos/project0/smil30/SMIL.xsd.1 +0 -63
  464. package/videos/project0/smil30/SMIL.xsd.2 +0 -63
  465. package/videos/project0/smil30/its.xsd +0 -42
  466. package/videos/project0/smil30/its.xsd.1 +0 -42
  467. package/videos/project0/smil30/its.xsd.2 +0 -42
  468. package/videos/project0/smil30/smil-attribs-1.mod.xsd +0 -610
  469. package/videos/project0/smil30/smil-attribs-1.mod.xsd.1 +0 -610
  470. package/videos/project0/smil30/smil-attribs-1.mod.xsd.2 +0 -610
  471. package/videos/project0/smil30/smil-datatypes-1.mod.xsd +0 -72
  472. package/videos/project0/smil30/smil-datatypes-1.mod.xsd.1 +0 -72
  473. package/videos/project0/smil30/smil-datatypes-1.mod.xsd.2 +0 -72
  474. package/videos/project0/smil30/smil-framework-1.mod.xsd +0 -45
  475. package/videos/project0/smil30/smil-framework-1.mod.xsd.1 +0 -45
  476. package/videos/project0/smil30/smil-framework-1.mod.xsd.2 +0 -45
  477. package/videos/project0/smil30/smil-profile-model-1.mod.xsd +0 -1331
  478. package/videos/project0/smil30/smil-profile-model-1.mod.xsd.1 +0 -1331
  479. package/videos/project0/smil30/smil-qname-1.mod.xsd +0 -121
  480. package/videos/project0/smil30/smil-qname-1.mod.xsd.1 +0 -121
  481. package/videos/project0/smil30/xml.xsd +0 -16
  482. package/videos/project0/smil30/xml.xsd.1 +0 -16
  483. package/videos/project0/smil30/xml.xsd.2 +0 -16
  484. package/videos/project0/smil30.xsd +0 -137
  485. package/videos/project0/src/audio/metadata.json +0 -5
  486. package/videos/project0/src/audio/narration.mp3 +0 -0
  487. package/videos/project0/src/motion-canvas.d.ts +0 -1
  488. package/videos/project0/src/project.meta +0 -31
  489. package/videos/project0/src/project.ts +0 -13
  490. package/videos/project0/src/scenes/example.meta +0 -5
  491. package/videos/project0/src/scenes/scene1.meta +0 -3
  492. package/videos/project0/src/scenes/scene1.tsx +0 -129
  493. package/videos/project0/src/scenes/scene2.tsx +0 -132
  494. package/videos/project0/src/scenes/scene3.meta +0 -26
  495. package/videos/project0/src/scenes/scene3.tsx +0 -188
  496. package/videos/project0/tsconfig.json +0 -4
  497. package/videos/project0/vite.config.ts +0 -10
  498. package/videos/trash/output/project.mp4 +0 -0
  499. package/videos/trash/text.mp4 +0 -0
  500. package/videos/trash/video/project.tsx +0 -549
  501. package/videos/trash/video/render.ts +0 -15
  502. package/videos/trash/vite.config.ts +0 -10
  503. package/videos/tts.js +0 -109
  504. /package/dist/{types/ReportServer.d.ts → module/design-editor/types.js} +0 -0
  505. /package/dist/types/{App.d.ts → src/App.d.ts} +0 -0
  506. /package/dist/types/{CoreTypes.d.ts → src/CoreTypes.d.ts} +0 -0
  507. /package/dist/types/{Init.d.ts → src/Init.d.ts} +0 -0
  508. /package/dist/types/{Node.d.ts → src/Node.d.ts} +0 -0
  509. /package/dist/types/{NodeSidecar.d.ts → src/NodeSidecar.d.ts} +0 -0
  510. /package/dist/types/{PM → src/PM}/PM_WithEslintAndTsc.d.ts +0 -0
  511. /package/dist/types/{PM → src/PM}/__tests__/nodeSidecar.testeranto.d.ts +0 -0
  512. /package/dist/types/{PM → src/PM}/__tests__/pureSidecar.testeranto.d.ts +0 -0
  513. /package/dist/types/{PM → src/PM}/__tests__/webSidecar.testeranto.d.ts +0 -0
  514. /package/dist/types/{PM → src/PM}/base.d.ts +0 -0
  515. /package/dist/types/{PM → src/PM}/node.d.ts +0 -0
  516. /package/dist/types/{PM → src/PM}/nodeSidecar.d.ts +0 -0
  517. /package/dist/types/{PM → src/PM}/pureSidecar.d.ts +0 -0
  518. /package/dist/types/{PM → src/PM}/sidecar.d.ts +0 -0
  519. /package/dist/types/{PM → src/PM}/types.d.ts +0 -0
  520. /package/dist/types/{PM → src/PM}/web.d.ts +0 -0
  521. /package/dist/types/{PM → src/PM}/webSidecar.d.ts +0 -0
  522. /package/dist/types/{Pure.d.ts → src/Pure.d.ts} +0 -0
  523. /package/dist/types/{PureSidecar.d.ts → src/PureSidecar.d.ts} +0 -0
  524. /package/dist/types/{build.d.ts → src/ReportServer.d.ts} +0 -0
  525. /package/dist/types/{ReportServer.test.ts → src/ReportServer.test.ts}/index.d.ts +0 -0
  526. /package/dist/types/{ReportServerLib.d.ts → src/ReportServerLib.d.ts} +0 -0
  527. /package/dist/types/{Types.d.ts → src/Types.d.ts} +0 -0
  528. /package/dist/types/{Web.d.ts → src/Web.d.ts} +0 -0
  529. /package/dist/types/{WebSidecar.d.ts → src/WebSidecar.d.ts} +0 -0
  530. /package/dist/types/{init-docs.d.ts → src/build.d.ts} +0 -0
  531. /package/dist/types/{components → src/components}/SunriseAnimation.d.ts +0 -0
  532. /package/dist/types/{components → src/components}/SunriseAnimation.test/implementation.d.ts +0 -0
  533. /package/dist/types/{components → src/components}/SunriseAnimation.test/index.d.ts +0 -0
  534. /package/dist/types/{components → src/components}/SunriseAnimation.test/interface.d.ts +0 -0
  535. /package/dist/types/{components → src/components}/SunriseAnimation.test/specification.d.ts +0 -0
  536. /package/dist/types/{components → src/components}/SunriseAnimation.test/types.d.ts +0 -0
  537. /package/dist/types/{components → src/components}/TestStatusBadge.d.ts +0 -0
  538. /package/dist/types/{components → src/components}/pure/AppFrame.test/implementation.d.ts +0 -0
  539. /package/dist/types/{components → src/components}/pure/AppFrame.test/index.d.ts +0 -0
  540. /package/dist/types/{components → src/components}/pure/AppFrame.test/specification.d.ts +0 -0
  541. /package/dist/types/{components → src/components}/pure/AppFrame.test/types.d.ts +0 -0
  542. /package/dist/types/{components → src/components}/pure/FeaturesReporterView.d.ts +0 -0
  543. /package/dist/types/{components → src/components}/pure/FeaturesReporterView.test/implementation.d.ts +0 -0
  544. /package/dist/types/{components → src/components}/pure/FeaturesReporterView.test/index.d.ts +0 -0
  545. /package/dist/types/{components → src/components}/pure/FeaturesReporterView.test/specification.d.ts +0 -0
  546. /package/dist/types/{components → src/components}/pure/FeaturesReporterView.test/types.d.ts +0 -0
  547. /package/dist/types/{components → src/components}/pure/ModalContent.d.ts +0 -0
  548. /package/dist/types/{components → src/components}/pure/ModalContent.test/implementation.d.ts +0 -0
  549. /package/dist/types/{components → src/components}/pure/ModalContent.test/specification.d.ts +0 -0
  550. /package/dist/types/{components → src/components}/pure/ModalContent.test/types.d.ts +0 -0
  551. /package/dist/types/{components → src/components}/pure/ProjectPageView.d.ts +0 -0
  552. /package/dist/types/{components → src/components}/pure/ProjectPageView.test/implementation.d.ts +0 -0
  553. /package/dist/types/{components/pure/ModalContent.test → src/components/pure/ProjectPageView.test}/index.d.ts +0 -0
  554. /package/dist/types/{components → src/components}/pure/ProjectPageView.test/specification.d.ts +0 -0
  555. /package/dist/types/{components → src/components}/pure/ProjectPageView.test/types.d.ts +0 -0
  556. /package/dist/types/{PM/layers/base/PM_Base.d.ts → src/components/pure/SingleProcessView.d.ts} +0 -0
  557. /package/dist/types/{components → src/components}/pure/TestPageView.d.ts +0 -0
  558. /package/dist/types/{components → src/components}/pure/TestPageView.test/specification.d.ts +0 -0
  559. /package/dist/types/{components → src/components}/pure/TestPageView.test/types.d.ts +0 -0
  560. /package/dist/types/{components → src/components}/pure/ThemeCard.d.ts +0 -0
  561. /package/dist/types/{components → src/components}/stateful/FeaturesReporter.d.ts +0 -0
  562. /package/dist/types/{components → src/components}/stateful/ProjectPage.d.ts +0 -0
  563. /package/dist/types/{components → src/components}/stateful/ProjectsPage.d.ts +0 -0
  564. /package/dist/types/{components → src/components}/stateful/TestPage.d.ts +0 -0
  565. /package/dist/types/{defaultConfig.d.ts → src/defaultConfig.d.ts} +0 -0
  566. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/consoleDetectorPlugin.d.ts +0 -0
  567. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/eslint-formatter-testeranto.d.ts +0 -0
  568. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/featuresPlugin.d.ts +0 -0
  569. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/index.d.ts +0 -0
  570. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/inputFilesPlugin.d.ts +0 -0
  571. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/nativeImportDetectorPlugin.d.ts +0 -0
  572. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/node.d.ts +0 -0
  573. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/pure.d.ts +0 -0
  574. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/rebuildPlugin.d.ts +0 -0
  575. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/web.d.ts +0 -0
  576. /package/dist/types/{run.d.ts → src/init-docs.d.ts} +0 -0
  577. /package/dist/types/{lib → src/lib}/BaseSuite.d.ts +0 -0
  578. /package/dist/types/{lib → src/lib}/BaseSuite.test/node.test.d.ts +0 -0
  579. /package/dist/types/{lib → src/lib}/BaseSuite.test/pure.test.d.ts +0 -0
  580. /package/dist/types/{lib → src/lib}/BaseSuite.test/test.d.ts +0 -0
  581. /package/dist/types/{lib → src/lib}/BaseSuite.test/web.test.d.ts +0 -0
  582. /package/dist/types/{lib → src/lib}/Sidecar.d.ts +0 -0
  583. /package/dist/types/{lib → src/lib}/abstractBase.d.ts +0 -0
  584. /package/dist/types/{lib → src/lib}/abstractBase.test/MockGiven.d.ts +0 -0
  585. /package/dist/types/{lib → src/lib}/abstractBase.test/MockThen.d.ts +0 -0
  586. /package/dist/types/{lib → src/lib}/abstractBase.test/MockWhen.d.ts +0 -0
  587. /package/dist/types/{lib → src/lib}/abstractBase.test/adapter.d.ts +0 -0
  588. /package/dist/types/{lib → src/lib}/abstractBase.test/implementation.d.ts +0 -0
  589. /package/dist/types/{lib → src/lib}/abstractBase.test/index.d.ts +0 -0
  590. /package/dist/types/{lib → src/lib}/abstractBase.test/specification.d.ts +0 -0
  591. /package/dist/types/{lib → src/lib}/abstractBase.test/types.d.ts +0 -0
  592. /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.adapter.d.ts +0 -0
  593. /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.implementation.d.ts +0 -0
  594. /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.mock.d.ts +0 -0
  595. /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.node.d.ts +0 -0
  596. /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.pure.d.ts +0 -0
  597. /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.specification.d.ts +0 -0
  598. /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.types.d.ts +0 -0
  599. /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.web.d.ts +0 -0
  600. /package/dist/types/{lib → src/lib}/classBuilder.d.ts +0 -0
  601. /package/dist/types/{lib → src/lib}/classBuilder.test/classBuilder.test.adapter.d.ts +0 -0
  602. /package/dist/types/{lib → src/lib}/classBuilder.test/classBuilder.test.d.ts +0 -0
  603. /package/dist/types/{lib → src/lib}/classBuilder.test/classBuilder.test.implementation.d.ts +0 -0
  604. /package/dist/types/{lib → src/lib}/classBuilder.test/classBuilder.test.specification.d.ts +0 -0
  605. /package/dist/types/{lib → src/lib}/classBuilder.test/classBuilder.test.types.d.ts +0 -0
  606. /package/dist/types/{lib → src/lib}/classBuilder.test/mock.d.ts +0 -0
  607. /package/dist/types/{lib → src/lib}/core.d.ts +0 -0
  608. /package/dist/types/{lib → src/lib}/core.test/MockCore.d.ts +0 -0
  609. /package/dist/types/{lib → src/lib}/core.test/core.test.adapter.d.ts +0 -0
  610. /package/dist/types/{lib → src/lib}/core.test/core.test.d.ts +0 -0
  611. /package/dist/types/{lib → src/lib}/core.test/core.test.implementation.d.ts +0 -0
  612. /package/dist/types/{lib → src/lib}/core.test/core.test.specification.d.ts +0 -0
  613. /package/dist/types/{lib → src/lib}/core.test/core.test.types.d.ts +0 -0
  614. /package/dist/types/{lib → src/lib}/mocks.test.d.ts +0 -0
  615. /package/dist/types/{lib → src/lib}/pmProxy.d.ts +0 -0
  616. /package/dist/types/{lib → src/lib}/pmProxy.test/adapter.d.ts +0 -0
  617. /package/dist/types/{lib → src/lib}/pmProxy.test/implementation.d.ts +0 -0
  618. /package/dist/types/{lib → src/lib}/pmProxy.test/index.d.ts +0 -0
  619. /package/dist/types/{lib → src/lib}/pmProxy.test/mockPM.d.ts +0 -0
  620. /package/dist/types/{lib → src/lib}/pmProxy.test/specification.d.ts +0 -0
  621. /package/dist/types/{lib → src/lib}/pmProxy.test/types.d.ts +0 -0
  622. /package/dist/types/{lib → src/lib}/types.d.ts +0 -0
  623. /package/dist/types/{mothership → src/mothership}/index.d.ts +0 -0
  624. /package/dist/types/{mothership → src/mothership}/test.d.ts +0 -0
  625. /package/dist/types/{types → src/types}/features.d.ts +0 -0
  626. /package/dist/types/{utils → src/utils}/api.d.ts +0 -0
  627. /package/dist/types/{utils → src/utils}/buildTemplates.d.ts +0 -0
  628. /package/dist/types/{utils → src/utils}/featureUtils.d.ts +0 -0
  629. /package/dist/types/{utils → src/utils}/makePrompt.d.ts +0 -0
  630. /package/dist/types/{utils → src/utils}/queue.d.ts +0 -0
  631. /package/dist/types/{utils.d.ts → src/utils.d.ts} +0 -0
  632. /package/dist/types/{web.html.d.ts → src/web.html.d.ts} +0 -0
@@ -1,1646 +0,0 @@
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 -->