svg_conform 0.1.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.
- checksums.yaml +7 -0
- data/.github/workflows/rake.yml +15 -0
- data/.github/workflows/release.yml +23 -0
- data/.github/workflows/svgcheck-compatibility.yml +135 -0
- data/.gitignore +12 -0
- data/.rspec +3 -0
- data/.rubocop.yml +13 -0
- data/.rubocop_todo.yml +183 -0
- data/CODE_OF_CONDUCT.md +132 -0
- data/Gemfile +14 -0
- data/README.adoc +1384 -0
- data/Rakefile +15 -0
- data/config/profiles/base.yml +34 -0
- data/config/profiles/lucid_fix.yml +37 -0
- data/config/profiles/metanorma.yml +212 -0
- data/config/profiles/no_external_css.yml +20 -0
- data/config/profiles/svg_1_2_rfc.yml +284 -0
- data/config/profiles/svg_1_2_rfc_with_rdf.yml +145 -0
- data/config/svgcheck_mapping.yml +180 -0
- data/docs/profiles.adoc +547 -0
- data/docs/rdf_metadata_support.adoc +212 -0
- data/docs/remediation.adoc +732 -0
- data/docs/requirements.adoc +709 -0
- data/examples/demo.rb +116 -0
- data/examples/requirements_demo.rb +240 -0
- data/exe/svg_conform +7 -0
- data/lib/svg_conform/batch_report.rb +70 -0
- data/lib/svg_conform/cli.rb +107 -0
- data/lib/svg_conform/commands/check.rb +390 -0
- data/lib/svg_conform/commands/profiles.rb +118 -0
- data/lib/svg_conform/commands/svgcheck.rb +90 -0
- data/lib/svg_conform/commands/svgcheck_compare.rb +92 -0
- data/lib/svg_conform/commands/svgcheck_compatibility.rb +43 -0
- data/lib/svg_conform/commands/svgcheck_generate.rb +262 -0
- data/lib/svg_conform/compatibility/analysis_context.rb +68 -0
- data/lib/svg_conform/compatibility/comparison_result.rb +147 -0
- data/lib/svg_conform/compatibility/compatibility_analyzer.rb +85 -0
- data/lib/svg_conform/compatibility/file_processor.rb +109 -0
- data/lib/svg_conform/compatibility/pattern_discovery.rb +319 -0
- data/lib/svg_conform/compatibility/report_formatter.rb +359 -0
- data/lib/svg_conform/compatibility/svg_analysis_engine.rb +316 -0
- data/lib/svg_conform/compatibility/validity_analysis.rb +252 -0
- data/lib/svg_conform/compatibility/xml_analysis_engine.rb +198 -0
- data/lib/svg_conform/compatibility_analyzer.rb +285 -0
- data/lib/svg_conform/conformance_report.rb +267 -0
- data/lib/svg_conform/constants.rb +199 -0
- data/lib/svg_conform/css_color.rb +262 -0
- data/lib/svg_conform/document.rb +203 -0
- data/lib/svg_conform/external_checkers/svgcheck/compatibility_engine.rb +166 -0
- data/lib/svg_conform/external_checkers/svgcheck/output_generator.rb +101 -0
- data/lib/svg_conform/external_checkers/svgcheck/parser.rb +200 -0
- data/lib/svg_conform/external_checkers/svgcheck/report_comparator.rb +175 -0
- data/lib/svg_conform/external_checkers/svgcheck/report_generator.rb +82 -0
- data/lib/svg_conform/external_checkers/svgcheck/validation_pipeline.rb +249 -0
- data/lib/svg_conform/external_checkers/svgcheck.rb +56 -0
- data/lib/svg_conform/external_checkers.rb +34 -0
- data/lib/svg_conform/fixer.rb +56 -0
- data/lib/svg_conform/profile.rb +164 -0
- data/lib/svg_conform/profiles.rb +60 -0
- data/lib/svg_conform/remediation_engine.rb +92 -0
- data/lib/svg_conform/remediation_result.rb +36 -0
- data/lib/svg_conform/remediation_runner.rb +225 -0
- data/lib/svg_conform/remediations/base_remediation.rb +165 -0
- data/lib/svg_conform/remediations/color_remediation.rb +226 -0
- data/lib/svg_conform/remediations/font_embedding_remediation.rb +145 -0
- data/lib/svg_conform/remediations/font_remediation.rb +122 -0
- data/lib/svg_conform/remediations/image_embedding_remediation.rb +154 -0
- data/lib/svg_conform/remediations/invalid_id_references_remediation.rb +129 -0
- data/lib/svg_conform/remediations/namespace_attribute_remediation.rb +244 -0
- data/lib/svg_conform/remediations/namespace_remediation.rb +151 -0
- data/lib/svg_conform/remediations/no_external_css_remediation.rb +192 -0
- data/lib/svg_conform/remediations/style_promotion_remediation.rb +93 -0
- data/lib/svg_conform/remediations/viewbox_remediation.rb +127 -0
- data/lib/svg_conform/remediations.rb +40 -0
- data/lib/svg_conform/report_comparator.rb +772 -0
- data/lib/svg_conform/requirements/allowed_elements_requirement.rb +367 -0
- data/lib/svg_conform/requirements/base_requirement.rb +98 -0
- data/lib/svg_conform/requirements/color_restrictions_requirement.rb +126 -0
- data/lib/svg_conform/requirements/element_requirement_config.rb +75 -0
- data/lib/svg_conform/requirements/font_family_requirement.rb +133 -0
- data/lib/svg_conform/requirements/forbidden_content_requirement.rb +60 -0
- data/lib/svg_conform/requirements/id_reference_requirement.rb +133 -0
- data/lib/svg_conform/requirements/invalid_id_references_requirement.rb +132 -0
- data/lib/svg_conform/requirements/link_validation_requirement.rb +55 -0
- data/lib/svg_conform/requirements/namespace_attributes_requirement.rb +211 -0
- data/lib/svg_conform/requirements/namespace_requirement.rb +294 -0
- data/lib/svg_conform/requirements/no_external_css_requirement.rb +132 -0
- data/lib/svg_conform/requirements/no_external_fonts_requirement.rb +121 -0
- data/lib/svg_conform/requirements/no_external_images_requirement.rb +91 -0
- data/lib/svg_conform/requirements/style_promotion_requirement.rb +72 -0
- data/lib/svg_conform/requirements/style_requirement.rb +226 -0
- data/lib/svg_conform/requirements/viewbox_required_requirement.rb +96 -0
- data/lib/svg_conform/requirements.rb +49 -0
- data/lib/svg_conform/semantic_comparator.rb +829 -0
- data/lib/svg_conform/validation_context.rb +408 -0
- data/lib/svg_conform/validation_result.rb +146 -0
- data/lib/svg_conform/validator.rb +91 -0
- data/lib/svg_conform/version.rb +5 -0
- data/lib/svg_conform.rb +68 -0
- data/lib/tasks/fixtures.rake +321 -0
- data/lib/tasks/svgcheck.rake +111 -0
- data/reference-docs/SVG-1.2-RFC.rnc.txt +1676 -0
- data/reference-docs/Scalable Vector Graphics (SVG) 1.1 (Second Edition).html +40764 -0
- data/reference-docs/Scalable Vector Graphics (SVG) Tiny 1.2 Specification.html +44591 -0
- data/reference-docs/rfc7996.txt +2971 -0
- data/sig/svg_conform.rbs +4 -0
- data/spec/fixtures/allowed_elements/inputs/basic_violations.svg +21 -0
- data/spec/fixtures/allowed_elements/repair/basic_violations.svg +18 -0
- data/spec/fixtures/color_restrictions/inputs/basic_violations.svg +23 -0
- data/spec/fixtures/color_restrictions/repair/basic_violations.svg +23 -0
- data/spec/fixtures/comprehensive/inputs/multiple_violations.svg +21 -0
- data/spec/fixtures/comprehensive/repair/multiple_violations.svg +16 -0
- data/spec/fixtures/font_family/inputs/basic_violations.svg +17 -0
- data/spec/fixtures/font_family/repair/basic_violations.svg +17 -0
- data/spec/fixtures/forbidden_content/inputs/basic_violations.svg +27 -0
- data/spec/fixtures/forbidden_content/repair/basic_violations.svg +19 -0
- data/spec/fixtures/id_reference/inputs/basic_violations.svg +17 -0
- data/spec/fixtures/id_reference/repair/basic_violations.svg +15 -0
- data/spec/fixtures/link_validation/inputs/basic_violations.svg +20 -0
- data/spec/fixtures/link_validation/repair/basic_violations.svg +16 -0
- data/spec/fixtures/lucid/inputs/simple.svg +67 -0
- data/spec/fixtures/lucid/repair/simple.svg +63 -0
- data/spec/fixtures/namespace/inputs/basic_violations.svg +20 -0
- data/spec/fixtures/namespace/repair/basic_violations.svg +17 -0
- data/spec/fixtures/namespace_attributes/inputs/basic_violations.svg +16 -0
- data/spec/fixtures/namespace_attributes/repair/basic_violations.svg +15 -0
- data/spec/fixtures/no_external_css/inputs/basic_violations.svg +20 -0
- data/spec/fixtures/no_external_css/repair/basic_violations.svg +18 -0
- data/spec/fixtures/style/inputs/basic_violations.svg +22 -0
- data/spec/fixtures/style/repair/basic_violations.svg +22 -0
- data/spec/fixtures/style_promotion/inputs/basic_test.svg +15 -0
- data/spec/fixtures/style_promotion/repair/basic_test.svg +15 -0
- data/spec/fixtures/svg_1_2_rfc/inputs/allowed_elements_violations.svg +18 -0
- data/spec/fixtures/svg_1_2_rfc/inputs/color_restrictions_violations.svg +23 -0
- data/spec/fixtures/svgcheck/check/DrawBerry-sample-2.svg.code +1 -0
- data/spec/fixtures/svgcheck/check/DrawBerry-sample-2.svg.err +0 -0
- data/spec/fixtures/svgcheck/check/DrawBerry-sample-2.svg.out +23 -0
- data/spec/fixtures/svgcheck/check/IETF-test.svg.code +1 -0
- data/spec/fixtures/svgcheck/check/IETF-test.svg.err +0 -0
- data/spec/fixtures/svgcheck/check/IETF-test.svg.out +20 -0
- data/spec/fixtures/svgcheck/check/circle.svg.code +1 -0
- data/spec/fixtures/svgcheck/check/circle.svg.err +0 -0
- data/spec/fixtures/svgcheck/check/circle.svg.out +2 -0
- data/spec/fixtures/svgcheck/check/colors.svg.code +1 -0
- data/spec/fixtures/svgcheck/check/colors.svg.err +0 -0
- data/spec/fixtures/svgcheck/check/colors.svg.out +13 -0
- data/spec/fixtures/svgcheck/check/dia-sample-svg.svg.code +1 -0
- data/spec/fixtures/svgcheck/check/dia-sample-svg.svg.err +0 -0
- data/spec/fixtures/svgcheck/check/dia-sample-svg.svg.out +76 -0
- data/spec/fixtures/svgcheck/check/example-dot.svg.code +1 -0
- data/spec/fixtures/svgcheck/check/example-dot.svg.err +0 -0
- data/spec/fixtures/svgcheck/check/example-dot.svg.out +11 -0
- data/spec/fixtures/svgcheck/check/full-tiny.svg.code +1 -0
- data/spec/fixtures/svgcheck/check/full-tiny.svg.err +0 -0
- data/spec/fixtures/svgcheck/check/full-tiny.svg.out +5835 -0
- data/spec/fixtures/svgcheck/check/good.svg.code +1 -0
- data/spec/fixtures/svgcheck/check/good.svg.err +0 -0
- data/spec/fixtures/svgcheck/check/good.svg.out +1 -0
- data/spec/fixtures/svgcheck/check/httpbis-proxy20-fig6.svg.code +1 -0
- data/spec/fixtures/svgcheck/check/httpbis-proxy20-fig6.svg.err +0 -0
- data/spec/fixtures/svgcheck/check/httpbis-proxy20-fig6.svg.out +5 -0
- data/spec/fixtures/svgcheck/check/malformed.svg.code +1 -0
- data/spec/fixtures/svgcheck/check/malformed.svg.err +0 -0
- data/spec/fixtures/svgcheck/check/malformed.svg.out +8 -0
- data/spec/fixtures/svgcheck/check/rfc-svg.svg.code +1 -0
- data/spec/fixtures/svgcheck/check/rfc-svg.svg.err +0 -0
- data/spec/fixtures/svgcheck/check/rfc-svg.svg.out +1 -0
- data/spec/fixtures/svgcheck/check/rfc.xml.code +1 -0
- data/spec/fixtures/svgcheck/check/rfc.xml.err +0 -0
- data/spec/fixtures/svgcheck/check/rfc.xml.out +2 -0
- data/spec/fixtures/svgcheck/check/rgb.svg.code +1 -0
- data/spec/fixtures/svgcheck/check/rgb.svg.err +0 -0
- data/spec/fixtures/svgcheck/check/rgb.svg.out +9 -0
- data/spec/fixtures/svgcheck/check/svg-wordle.svg.code +1 -0
- data/spec/fixtures/svgcheck/check/svg-wordle.svg.err +0 -0
- data/spec/fixtures/svgcheck/check/svg-wordle.svg.out +508 -0
- data/spec/fixtures/svgcheck/check/threshold.svg.code +1 -0
- data/spec/fixtures/svgcheck/check/threshold.svg.err +0 -0
- data/spec/fixtures/svgcheck/check/threshold.svg.out +20 -0
- data/spec/fixtures/svgcheck/check/utf8.svg.code +1 -0
- data/spec/fixtures/svgcheck/check/utf8.svg.err +0 -0
- data/spec/fixtures/svgcheck/check/utf8.svg.out +162 -0
- data/spec/fixtures/svgcheck/check/viewBox-both.svg.code +1 -0
- data/spec/fixtures/svgcheck/check/viewBox-both.svg.err +0 -0
- data/spec/fixtures/svgcheck/check/viewBox-both.svg.out +4 -0
- data/spec/fixtures/svgcheck/check/viewBox-height.svg.code +1 -0
- data/spec/fixtures/svgcheck/check/viewBox-height.svg.err +0 -0
- data/spec/fixtures/svgcheck/check/viewBox-height.svg.out +3 -0
- data/spec/fixtures/svgcheck/check/viewBox-none.svg.code +1 -0
- data/spec/fixtures/svgcheck/check/viewBox-none.svg.err +0 -0
- data/spec/fixtures/svgcheck/check/viewBox-none.svg.out +3 -0
- data/spec/fixtures/svgcheck/check/viewBox-width.svg.code +1 -0
- data/spec/fixtures/svgcheck/check/viewBox-width.svg.err +0 -0
- data/spec/fixtures/svgcheck/check/viewBox-width.svg.out +3 -0
- data/spec/fixtures/svgcheck/inputs/DrawBerry-sample-2.svg +28 -0
- data/spec/fixtures/svgcheck/inputs/IETF-test.svg +28 -0
- data/spec/fixtures/svgcheck/inputs/circle.svg +3 -0
- data/spec/fixtures/svgcheck/inputs/colors.svg +18 -0
- data/spec/fixtures/svgcheck/inputs/dia-sample-svg.svg +47 -0
- data/spec/fixtures/svgcheck/inputs/example-dot.svg +75 -0
- data/spec/fixtures/svgcheck/inputs/full-tiny.svg +16194 -0
- data/spec/fixtures/svgcheck/inputs/good.svg +19 -0
- data/spec/fixtures/svgcheck/inputs/httpbis-proxy20-fig6.svg +2 -0
- data/spec/fixtures/svgcheck/inputs/malformed.svg +11 -0
- data/spec/fixtures/svgcheck/inputs/rfc-svg.svg +1028 -0
- data/spec/fixtures/svgcheck/inputs/rfc.xml +37 -0
- data/spec/fixtures/svgcheck/inputs/rgb.svg +9 -0
- data/spec/fixtures/svgcheck/inputs/svg-wordle.svg +330 -0
- data/spec/fixtures/svgcheck/inputs/threshold.svg +26 -0
- data/spec/fixtures/svgcheck/inputs/utf8.svg +448 -0
- data/spec/fixtures/svgcheck/inputs/viewBox-both.svg +3 -0
- data/spec/fixtures/svgcheck/inputs/viewBox-height.svg +3 -0
- data/spec/fixtures/svgcheck/inputs/viewBox-none.svg +3 -0
- data/spec/fixtures/svgcheck/inputs/viewBox-width.svg +3 -0
- data/spec/fixtures/svgcheck/repair/DrawBerry-sample-2.svg.code +1 -0
- data/spec/fixtures/svgcheck/repair/DrawBerry-sample-2.svg.err +0 -0
- data/spec/fixtures/svgcheck/repair/DrawBerry-sample-2.svg.file +0 -0
- data/spec/fixtures/svgcheck/repair/DrawBerry-sample-2.svg.out +23 -0
- data/spec/fixtures/svgcheck/repair/IETF-test.svg.code +1 -0
- data/spec/fixtures/svgcheck/repair/IETF-test.svg.err +0 -0
- data/spec/fixtures/svgcheck/repair/IETF-test.svg.file +29 -0
- data/spec/fixtures/svgcheck/repair/IETF-test.svg.out +20 -0
- data/spec/fixtures/svgcheck/repair/circle.svg.code +1 -0
- data/spec/fixtures/svgcheck/repair/circle.svg.err +0 -0
- data/spec/fixtures/svgcheck/repair/circle.svg.file +4 -0
- data/spec/fixtures/svgcheck/repair/circle.svg.out +2 -0
- data/spec/fixtures/svgcheck/repair/colors.svg.code +1 -0
- data/spec/fixtures/svgcheck/repair/colors.svg.err +0 -0
- data/spec/fixtures/svgcheck/repair/colors.svg.file +19 -0
- data/spec/fixtures/svgcheck/repair/colors.svg.out +13 -0
- data/spec/fixtures/svgcheck/repair/dia-sample-svg.svg.code +1 -0
- data/spec/fixtures/svgcheck/repair/dia-sample-svg.svg.err +0 -0
- data/spec/fixtures/svgcheck/repair/dia-sample-svg.svg.file +47 -0
- data/spec/fixtures/svgcheck/repair/dia-sample-svg.svg.out +76 -0
- data/spec/fixtures/svgcheck/repair/example-dot.svg.code +1 -0
- data/spec/fixtures/svgcheck/repair/example-dot.svg.err +0 -0
- data/spec/fixtures/svgcheck/repair/example-dot.svg.file +69 -0
- data/spec/fixtures/svgcheck/repair/example-dot.svg.out +11 -0
- data/spec/fixtures/svgcheck/repair/good.svg.code +1 -0
- data/spec/fixtures/svgcheck/repair/good.svg.err +0 -0
- data/spec/fixtures/svgcheck/repair/good.svg.file +0 -0
- data/spec/fixtures/svgcheck/repair/good.svg.out +1 -0
- data/spec/fixtures/svgcheck/repair/httpbis-proxy20-fig6.svg.code +1 -0
- data/spec/fixtures/svgcheck/repair/httpbis-proxy20-fig6.svg.err +0 -0
- data/spec/fixtures/svgcheck/repair/httpbis-proxy20-fig6.svg.file +73 -0
- data/spec/fixtures/svgcheck/repair/httpbis-proxy20-fig6.svg.out +5 -0
- data/spec/fixtures/svgcheck/repair/malformed.svg.code +1 -0
- data/spec/fixtures/svgcheck/repair/malformed.svg.err +0 -0
- data/spec/fixtures/svgcheck/repair/malformed.svg.file +9 -0
- data/spec/fixtures/svgcheck/repair/malformed.svg.out +8 -0
- data/spec/fixtures/svgcheck/repair/rfc-svg.svg.code +1 -0
- data/spec/fixtures/svgcheck/repair/rfc-svg.svg.err +0 -0
- data/spec/fixtures/svgcheck/repair/rfc-svg.svg.file +0 -0
- data/spec/fixtures/svgcheck/repair/rfc-svg.svg.out +1 -0
- data/spec/fixtures/svgcheck/repair/rfc.xml.code +1 -0
- data/spec/fixtures/svgcheck/repair/rfc.xml.err +0 -0
- data/spec/fixtures/svgcheck/repair/rfc.xml.file +37 -0
- data/spec/fixtures/svgcheck/repair/rfc.xml.out +2 -0
- data/spec/fixtures/svgcheck/repair/rgb.svg.code +1 -0
- data/spec/fixtures/svgcheck/repair/rgb.svg.err +0 -0
- data/spec/fixtures/svgcheck/repair/rgb.svg.file +10 -0
- data/spec/fixtures/svgcheck/repair/rgb.svg.out +9 -0
- data/spec/fixtures/svgcheck/repair/svg-wordle.svg.code +1 -0
- data/spec/fixtures/svgcheck/repair/svg-wordle.svg.err +0 -0
- data/spec/fixtures/svgcheck/repair/svg-wordle.svg.file +112 -0
- data/spec/fixtures/svgcheck/repair/svg-wordle.svg.out +508 -0
- data/spec/fixtures/svgcheck/repair/threshold.svg.code +1 -0
- data/spec/fixtures/svgcheck/repair/threshold.svg.err +0 -0
- data/spec/fixtures/svgcheck/repair/threshold.svg.file +27 -0
- data/spec/fixtures/svgcheck/repair/threshold.svg.out +20 -0
- data/spec/fixtures/svgcheck/repair/utf8.svg.code +1 -0
- data/spec/fixtures/svgcheck/repair/utf8.svg.err +0 -0
- data/spec/fixtures/svgcheck/repair/utf8.svg.file +381 -0
- data/spec/fixtures/svgcheck/repair/utf8.svg.out +162 -0
- data/spec/fixtures/svgcheck/repair/viewBox-both.svg.code +1 -0
- data/spec/fixtures/svgcheck/repair/viewBox-both.svg.err +0 -0
- data/spec/fixtures/svgcheck/repair/viewBox-both.svg.file +4 -0
- data/spec/fixtures/svgcheck/repair/viewBox-both.svg.out +4 -0
- data/spec/fixtures/svgcheck/repair/viewBox-height.svg.code +1 -0
- data/spec/fixtures/svgcheck/repair/viewBox-height.svg.err +0 -0
- data/spec/fixtures/svgcheck/repair/viewBox-height.svg.file +4 -0
- data/spec/fixtures/svgcheck/repair/viewBox-height.svg.out +3 -0
- data/spec/fixtures/svgcheck/repair/viewBox-none.svg.code +1 -0
- data/spec/fixtures/svgcheck/repair/viewBox-none.svg.err +0 -0
- data/spec/fixtures/svgcheck/repair/viewBox-none.svg.file +4 -0
- data/spec/fixtures/svgcheck/repair/viewBox-none.svg.out +3 -0
- data/spec/fixtures/svgcheck/repair/viewBox-width.svg.code +1 -0
- data/spec/fixtures/svgcheck/repair/viewBox-width.svg.err +0 -0
- data/spec/fixtures/svgcheck/repair/viewBox-width.svg.file +4 -0
- data/spec/fixtures/svgcheck/repair/viewBox-width.svg.out +3 -0
- data/spec/fixtures/viewbox_required/inputs/missing_viewbox.svg +10 -0
- data/spec/fixtures/viewbox_required/repair/missing_viewbox.svg +10 -0
- data/spec/spec_helper.rb +16 -0
- data/spec/svg_conform/batch_report_spec.rb +99 -0
- data/spec/svg_conform/commands/check_command_spec.rb +90 -0
- data/spec/svg_conform/commands/profiles_command_spec.rb +20 -0
- data/spec/svg_conform/commands/svgcheck_compare_command_spec.rb +13 -0
- data/spec/svg_conform/commands/svgcheck_compatibility_command_spec.rb +13 -0
- data/spec/svg_conform/commands/svgcheck_generate_command_spec.rb +14 -0
- data/spec/svg_conform/profiles/base_profile_spec.rb +42 -0
- data/spec/svg_conform/profiles/lucid_fix_profile_spec.rb +46 -0
- data/spec/svg_conform/profiles/lucid_profile_spec.rb +84 -0
- data/spec/svg_conform/profiles/metanorma_profile_spec.rb +62 -0
- data/spec/svg_conform/profiles/no_external_css_profile_spec.rb +66 -0
- data/spec/svg_conform/profiles/svg_1_2_rfc_profile_spec.rb +200 -0
- data/spec/svg_conform/profiles/svg_1_2_rfc_with_rdf_profile_spec.rb +81 -0
- data/spec/svg_conform/remediations/color_remediation_spec.rb +95 -0
- data/spec/svg_conform/remediations/font_embedding_remediation_spec.rb +20 -0
- data/spec/svg_conform/remediations/font_remediation_spec.rb +95 -0
- data/spec/svg_conform/remediations/image_embedding_remediation_spec.rb +20 -0
- data/spec/svg_conform/remediations/invalid_id_references_remediation_spec.rb +97 -0
- data/spec/svg_conform/remediations/namespace_attribute_remediation_spec.rb +97 -0
- data/spec/svg_conform/remediations/namespace_remediation_spec.rb +95 -0
- data/spec/svg_conform/remediations/no_external_css_remediation_spec.rb +97 -0
- data/spec/svg_conform/remediations/style_promotion_remediation_spec.rb +97 -0
- data/spec/svg_conform/remediations/viewbox_remediation_spec.rb +95 -0
- data/spec/svg_conform/requirements/allowed_elements_requirement_spec.rb +118 -0
- data/spec/svg_conform/requirements/color_restrictions_requirement_spec.rb +168 -0
- data/spec/svg_conform/requirements/font_family_requirement_spec.rb +188 -0
- data/spec/svg_conform/requirements/forbidden_content_requirement_spec.rb +195 -0
- data/spec/svg_conform/requirements/id_reference_requirement_spec.rb +78 -0
- data/spec/svg_conform/requirements/invalid_id_references_requirement_spec.rb +78 -0
- data/spec/svg_conform/requirements/link_validation_requirement_spec.rb +78 -0
- data/spec/svg_conform/requirements/namespace_attributes_requirement_spec.rb +86 -0
- data/spec/svg_conform/requirements/namespace_requirement_spec.rb +184 -0
- data/spec/svg_conform/requirements/no_external_css_requirement_spec.rb +78 -0
- data/spec/svg_conform/requirements/no_external_fonts_requirement_spec.rb +20 -0
- data/spec/svg_conform/requirements/no_external_images_requirement_spec.rb +20 -0
- data/spec/svg_conform/requirements/style_promotion_requirement_spec.rb +78 -0
- data/spec/svg_conform/requirements/style_requirement_spec.rb +76 -0
- data/spec/svg_conform/requirements/viewbox_required_requirement_spec.rb +165 -0
- data/spec/svg_conform_spec.rb +32 -0
- data/spec/svgcheck_compatibility_spec.rb +355 -0
- data/svg_conform.gemspec +35 -0
- metadata +436 -0
|
@@ -0,0 +1,381 @@
|
|
|
1
|
+
<?xml version='1.0' encoding='utf-8'?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" version="1.2" viewBox="0 0 28000 21000" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xml:space="preserve">
|
|
3
|
+
<defs class="ClipPathGroup">
|
|
4
|
+
</defs>
|
|
5
|
+
<defs>
|
|
6
|
+
<g id="ooo:meta_slides">
|
|
7
|
+
<g id="ooo:meta_dummy_slide"/>
|
|
8
|
+
<g id="ooo:meta_slide_0"/>
|
|
9
|
+
</g>
|
|
10
|
+
</defs>
|
|
11
|
+
<defs id="presentation-animations"/>
|
|
12
|
+
<defs>
|
|
13
|
+
</defs>
|
|
14
|
+
<defs>
|
|
15
|
+
</defs>
|
|
16
|
+
<defs>
|
|
17
|
+
</defs>
|
|
18
|
+
<defs class="TextShapeIndex">
|
|
19
|
+
<g/>
|
|
20
|
+
</defs>
|
|
21
|
+
<defs class="EmbeddedBulletChars">
|
|
22
|
+
<g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
|
|
23
|
+
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
|
|
24
|
+
</g>
|
|
25
|
+
<g id="bullet-char-template-57354" transform="scale(0.00048828125,-0.00048828125)">
|
|
26
|
+
<path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
|
|
27
|
+
</g>
|
|
28
|
+
<g id="bullet-char-template-10146" transform="scale(0.00048828125,-0.00048828125)">
|
|
29
|
+
<path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
|
|
30
|
+
</g>
|
|
31
|
+
<g id="bullet-char-template-10132" transform="scale(0.00048828125,-0.00048828125)">
|
|
32
|
+
<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
|
|
33
|
+
</g>
|
|
34
|
+
<g id="bullet-char-template-10007" transform="scale(0.00048828125,-0.00048828125)">
|
|
35
|
+
<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
|
|
36
|
+
</g>
|
|
37
|
+
<g id="bullet-char-template-10004" transform="scale(0.00048828125,-0.00048828125)">
|
|
38
|
+
<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
|
|
39
|
+
</g>
|
|
40
|
+
<g id="bullet-char-template-9679" transform="scale(0.00048828125,-0.00048828125)">
|
|
41
|
+
<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
|
|
42
|
+
</g>
|
|
43
|
+
<g id="bullet-char-template-8226" transform="scale(0.00048828125,-0.00048828125)">
|
|
44
|
+
<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
|
|
45
|
+
</g>
|
|
46
|
+
<g id="bullet-char-template-8211" transform="scale(0.00048828125,-0.00048828125)">
|
|
47
|
+
<path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
|
|
48
|
+
</g>
|
|
49
|
+
<g id="bullet-char-template-61548" transform="scale(0.00048828125,-0.00048828125)">
|
|
50
|
+
<path d="M 173,740 C 173,903 231,1043 346,1159 462,1274 601,1332 765,1332 928,1332 1067,1274 1183,1159 1299,1043 1357,903 1357,740 1357,577 1299,437 1183,322 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"/>
|
|
51
|
+
</g>
|
|
52
|
+
</defs>
|
|
53
|
+
<defs class="TextEmbeddedBitmaps"/>
|
|
54
|
+
<defs>
|
|
55
|
+
<g id="dummy-master-page" class="Master_Slide">
|
|
56
|
+
<g id="bg-dummy-master-page" class="Background" visibility="hidden"/>
|
|
57
|
+
<g id="bo-dummy-master-page" class="BackgroundObjects" visibility="hidden"/>
|
|
58
|
+
</g>
|
|
59
|
+
<g id="id2" class="Master_Slide">
|
|
60
|
+
<g id="bg-id2" class="Background">
|
|
61
|
+
<path fill="white" stroke="none" d="M 14000,20999 L 0,20999 0,0 27999,0 27999,20999 14000,20999 Z"/>
|
|
62
|
+
</g>
|
|
63
|
+
<g id="bo-id2" class="BackgroundObjects">
|
|
64
|
+
<g visibility="hidden" class="Slide_Number">
|
|
65
|
+
<g id="id3">
|
|
66
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="20076" y="19128" width="6506" height="1449"/>
|
|
67
|
+
<text class="TextShape"><tspan class="TextParagraph" font-family="sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="20076" y="19591"><tspan class="PlaceholderText" fill="white" stroke="none"><number></tspan></tspan></tspan></text>
|
|
68
|
+
</g>
|
|
69
|
+
</g>
|
|
70
|
+
</g>
|
|
71
|
+
</g>
|
|
72
|
+
</defs>
|
|
73
|
+
<g class="DummySlide">
|
|
74
|
+
<g>
|
|
75
|
+
<g id="dummy-slide" class="Slide">
|
|
76
|
+
<g class="Page"/>
|
|
77
|
+
</g>
|
|
78
|
+
</g>
|
|
79
|
+
</g>
|
|
80
|
+
<g class="SlideGroup">
|
|
81
|
+
<g visibility="hidden">
|
|
82
|
+
<g id="container-id1">
|
|
83
|
+
<g id="id1" class="Slide">
|
|
84
|
+
<g class="Page">
|
|
85
|
+
<g class="com.sun.star.drawing.LineShape">
|
|
86
|
+
<g id="id4">
|
|
87
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="7184" y="10710" width="93" height="3178"/>
|
|
88
|
+
<path fill="none" stroke="black" stroke-width="88" stroke-linejoin="miter" d="M 7232,10711 L 7228,13886"/>
|
|
89
|
+
</g>
|
|
90
|
+
</g>
|
|
91
|
+
<g class="com.sun.star.drawing.LineShape">
|
|
92
|
+
<g id="id5">
|
|
93
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="20091" y="7324" width="93" height="3389"/>
|
|
94
|
+
<path fill="none" stroke="black" stroke-width="88" stroke-linejoin="miter" d="M 20139,7325 L 20135,10711"/>
|
|
95
|
+
</g>
|
|
96
|
+
</g>
|
|
97
|
+
<g class="com.sun.star.drawing.LineShape">
|
|
98
|
+
<g id="id6">
|
|
99
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="8236" y="7535" width="94" height="3178"/>
|
|
100
|
+
<path fill="none" stroke="black" stroke-width="88" stroke-linejoin="miter" d="M 8285,7536 L 8280,10711"/>
|
|
101
|
+
</g>
|
|
102
|
+
</g>
|
|
103
|
+
<g class="com.sun.star.drawing.LineShape">
|
|
104
|
+
<g id="id7">
|
|
105
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="23269" y="17272" width="94" height="1696"/>
|
|
106
|
+
<path fill="none" stroke="black" stroke-width="88" stroke-linejoin="miter" d="M 23318,17273 L 23313,18966"/>
|
|
107
|
+
</g>
|
|
108
|
+
</g>
|
|
109
|
+
<g class="com.sun.star.drawing.LineShape">
|
|
110
|
+
<g id="id8">
|
|
111
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="18402" y="17272" width="93" height="1696"/>
|
|
112
|
+
<path fill="none" stroke="black" stroke-width="88" stroke-linejoin="miter" d="M 18450,17273 L 18446,18966"/>
|
|
113
|
+
</g>
|
|
114
|
+
</g>
|
|
115
|
+
<g class="com.sun.star.drawing.LineShape">
|
|
116
|
+
<g id="id9">
|
|
117
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="13534" y="17272" width="93" height="1696"/>
|
|
118
|
+
<path fill="none" stroke="black" stroke-width="88" stroke-linejoin="miter" d="M 13582,17273 L 13578,18966"/>
|
|
119
|
+
</g>
|
|
120
|
+
</g>
|
|
121
|
+
<g class="com.sun.star.drawing.LineShape">
|
|
122
|
+
<g id="id10">
|
|
123
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="8454" y="17272" width="93" height="1696"/>
|
|
124
|
+
<path fill="none" stroke="black" stroke-width="88" stroke-linejoin="miter" d="M 8502,17273 L 8498,18966"/>
|
|
125
|
+
</g>
|
|
126
|
+
</g>
|
|
127
|
+
<g class="com.sun.star.drawing.LineShape">
|
|
128
|
+
<g id="id11">
|
|
129
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="3584" y="17272" width="94" height="1696"/>
|
|
130
|
+
<path fill="none" stroke="black" stroke-width="88" stroke-linejoin="miter" d="M 3633,17273 L 3628,18966"/>
|
|
131
|
+
</g>
|
|
132
|
+
</g>
|
|
133
|
+
<g class="com.sun.star.drawing.LineShape">
|
|
134
|
+
<g id="id12">
|
|
135
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="23694" y="13885" width="93" height="3390"/>
|
|
136
|
+
<path fill="none" stroke="black" stroke-width="88" stroke-linejoin="miter" d="M 23742,13886 L 23738,17273"/>
|
|
137
|
+
</g>
|
|
138
|
+
</g>
|
|
139
|
+
<g class="com.sun.star.drawing.LineShape">
|
|
140
|
+
<g id="id13">
|
|
141
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="17979" y="13885" width="93" height="3390"/>
|
|
142
|
+
<path fill="none" stroke="black" stroke-width="88" stroke-linejoin="miter" d="M 18027,13886 L 18023,17273"/>
|
|
143
|
+
</g>
|
|
144
|
+
</g>
|
|
145
|
+
<g class="com.sun.star.drawing.LineShape">
|
|
146
|
+
<g id="id14">
|
|
147
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="11204" y="13885" width="94" height="3390"/>
|
|
148
|
+
<path fill="none" stroke="black" stroke-width="88" stroke-linejoin="miter" d="M 11253,13886 L 11248,17273"/>
|
|
149
|
+
</g>
|
|
150
|
+
</g>
|
|
151
|
+
<g class="com.sun.star.drawing.LineShape">
|
|
152
|
+
<g id="id15">
|
|
153
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="4220" y="13886" width="89" height="3388"/>
|
|
154
|
+
<path fill="none" stroke="black" stroke-width="88" stroke-linejoin="miter" d="M 4264,13886 L 4264,17273"/>
|
|
155
|
+
</g>
|
|
156
|
+
</g>
|
|
157
|
+
<g class="com.sun.star.drawing.LineShape">
|
|
158
|
+
<g id="id16">
|
|
159
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="20307" y="10710" width="93" height="3178"/>
|
|
160
|
+
<path fill="none" stroke="black" stroke-width="88" stroke-linejoin="miter" d="M 20355,10711 L 20351,13886"/>
|
|
161
|
+
</g>
|
|
162
|
+
</g>
|
|
163
|
+
<g class="TitleText">
|
|
164
|
+
<g id="id17">
|
|
165
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="1512" y="340" width="25184" height="3490"/>
|
|
166
|
+
<text class="TextShape"><tspan class="TextParagraph" font-family="sans-serif" font-size="1552px" font-weight="400"><tspan class="TextPosition" x="4733" y="2509"><tspan fill="black" stroke="none">Updated Scenario Diagram</tspan></tspan></tspan></text>
|
|
167
|
+
</g>
|
|
168
|
+
</g>
|
|
169
|
+
<g class="com.sun.star.drawing.CustomShape">
|
|
170
|
+
<g id="id18">
|
|
171
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="863" y="3076" width="26272" height="4923"/>
|
|
172
|
+
<path fill="none" stroke="black" stroke-width="26" stroke-linejoin="miter" d="M 3438,4858 C 2102,4892 1089,5169 1089,5500 1088,5729 1581,5940 2383,6056 L 2370,6049 C 1914,6168 1661,6324 1661,6487 1661,6842 2837,7129 4289,7129 4390,7129 4492,7127 4595,7124 L 4580,7129 C 5410,7484 6950,7704 8618,7704 9462,7703 10292,7647 11015,7540 L 11007,7541 C 11762,7818 13031,7985 14391,7985 16183,7985 17766,7696 18286,7275 L 18289,7281 C 18844,7365 19482,7410 20136,7410 22050,7410 23607,7032 23622,6564 L 23616,6562 C 25626,6491 27121,6070 27121,5572 27121,5352 26823,5138 26276,4963 L 26267,4963 C 26439,4865 26528,4759 26528,4652 26528,4296 25556,3985 24158,3891 L 24169,3890 C 23918,3549 22704,3302 21288,3302 20427,3302 19611,3394 19055,3554 L 19059,3555 C 18563,3395 17789,3302 16968,3302 15971,3302 15059,3440 14614,3658 L 14624,3669 C 14022,3524 13212,3442 12368,3442 11180,3442 10088,3603 9530,3861 L 9520,3866 C 8896,3776 8186,3729 7462,3729 5214,3729 3393,4175 3393,4726 3392,4770 3405,4815 3429,4860 L 3438,4858 Z"/>
|
|
173
|
+
<path fill="none" stroke="black" stroke-width="26" stroke-linejoin="miter" d="M 2383,6056 C 2784,6114 3241,6144 3707,6144 3774,6144 3843,6144 3910,6142"/>
|
|
174
|
+
<path fill="none" stroke="black" stroke-width="26" stroke-linejoin="miter" d="M 4595,7124 C 4824,7118 5048,7104 5263,7083"/>
|
|
175
|
+
<path fill="none" stroke="black" stroke-width="26" stroke-linejoin="miter" d="M 10605,7352 C 10711,7418 10846,7482 11007,7541"/>
|
|
176
|
+
<path fill="none" stroke="black" stroke-width="26" stroke-linejoin="miter" d="M 18286,7275 C 18369,7208 18422,7138 18446,7068"/>
|
|
177
|
+
<path fill="none" stroke="black" stroke-width="26" stroke-linejoin="miter" d="M 23622,6564 C 23622,6562 23623,6559 23623,6557 23623,6231 22861,5933 21663,5790"/>
|
|
178
|
+
<path fill="none" stroke="black" stroke-width="26" stroke-linejoin="miter" d="M 25395,5253 C 25773,5174 26071,5075 26267,4963"/>
|
|
179
|
+
<path fill="none" stroke="black" stroke-width="26" stroke-linejoin="miter" d="M 24215,4027 C 24215,4023 24216,4020 24216,4016 24216,3974 24200,3931 24169,3890"/>
|
|
180
|
+
<path fill="none" stroke="black" stroke-width="26" stroke-linejoin="miter" d="M 19055,3554 C 18873,3607 18722,3666 18609,3729"/>
|
|
181
|
+
<path fill="none" stroke="black" stroke-width="26" stroke-linejoin="miter" d="M 14614,3658 C 14516,3706 14444,3757 14397,3809"/>
|
|
182
|
+
<path fill="none" stroke="black" stroke-width="26" stroke-linejoin="miter" d="M 10304,4012 C 10067,3956 9805,3907 9520,3866"/>
|
|
183
|
+
<path fill="none" stroke="black" stroke-width="26" stroke-linejoin="miter" d="M 3429,4860 C 3458,4912 3504,4963 3567,5014"/>
|
|
184
|
+
<path fill="none" stroke="black" stroke-width="26" stroke-linejoin="miter" d="M 3226,4646 C 1890,4680 877,4957 877,5288 876,5517 1369,5728 2171,5844 L 2158,5837 C 1702,5956 1449,6112 1449,6275 1449,6630 2625,6917 4077,6917 4178,6917 4280,6915 4383,6912 L 4368,6917 C 5198,7272 6738,7492 8406,7492 9250,7491 10080,7435 10803,7328 L 10795,7329 C 11550,7606 12819,7773 14179,7773 15971,7773 17554,7484 18074,7063 L 18077,7069 C 18632,7153 19270,7198 19924,7198 21838,7198 23395,6820 23410,6352 L 23404,6350 C 25414,6279 26909,5858 26909,5360 26909,5140 26611,4926 26064,4751 L 26055,4751 C 26227,4653 26316,4547 26316,4440 26316,4084 25344,3773 23946,3679 L 23957,3678 C 23706,3337 22492,3090 21076,3090 20215,3090 19399,3182 18843,3342 L 18847,3343 C 18351,3183 17577,3090 16756,3090 15759,3090 14847,3228 14402,3446 L 14412,3457 C 13810,3312 13000,3230 12156,3230 10968,3230 9876,3391 9318,3649 L 9308,3654 C 8684,3564 7974,3517 7250,3517 5002,3517 3181,3963 3181,4514 3180,4558 3193,4603 3217,4648 L 3226,4646 Z"/>
|
|
185
|
+
<path fill="none" stroke="black" stroke-width="26" stroke-linejoin="miter" d="M 2171,5844 C 2572,5902 3029,5932 3495,5932 3562,5932 3631,5932 3698,5930"/>
|
|
186
|
+
<path fill="none" stroke="black" stroke-width="26" stroke-linejoin="miter" d="M 4383,6912 C 4612,6906 4836,6892 5051,6871"/>
|
|
187
|
+
<path fill="none" stroke="black" stroke-width="26" stroke-linejoin="miter" d="M 10393,7140 C 10499,7206 10634,7270 10795,7329"/>
|
|
188
|
+
<path fill="none" stroke="black" stroke-width="26" stroke-linejoin="miter" d="M 18074,7063 C 18157,6996 18210,6926 18234,6856"/>
|
|
189
|
+
<path fill="none" stroke="black" stroke-width="26" stroke-linejoin="miter" d="M 23410,6352 C 23410,6350 23411,6347 23411,6345 23411,6019 22649,5721 21451,5578"/>
|
|
190
|
+
<path fill="none" stroke="black" stroke-width="26" stroke-linejoin="miter" d="M 25183,5041 C 25561,4962 25859,4863 26055,4751"/>
|
|
191
|
+
<path fill="none" stroke="black" stroke-width="26" stroke-linejoin="miter" d="M 24003,3815 C 24003,3811 24004,3808 24004,3804 24004,3762 23988,3719 23957,3678"/>
|
|
192
|
+
<path fill="none" stroke="black" stroke-width="26" stroke-linejoin="miter" d="M 18843,3342 C 18661,3395 18510,3454 18397,3517"/>
|
|
193
|
+
<path fill="none" stroke="black" stroke-width="26" stroke-linejoin="miter" d="M 14402,3446 C 14304,3494 14232,3545 14185,3597"/>
|
|
194
|
+
<path fill="none" stroke="black" stroke-width="26" stroke-linejoin="miter" d="M 10092,3800 C 9855,3744 9593,3695 9308,3654"/>
|
|
195
|
+
<path fill="none" stroke="black" stroke-width="26" stroke-linejoin="miter" d="M 3217,4648 C 3246,4700 3292,4751 3355,4802"/>
|
|
196
|
+
</g>
|
|
197
|
+
</g>
|
|
198
|
+
<g class="com.sun.star.drawing.CustomShape">
|
|
199
|
+
<g id="id19">
|
|
200
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="7780" y="4915" width="11481" height="732"/>
|
|
201
|
+
<text class="TextShape"><tspan class="TextParagraph" font-family="sans-serif" font-size="988px" font-weight="400"><tspan class="TextPosition" x="7688" y="5634"><tspan fill="black" stroke="none">IPv6 Clients in the Internet</tspan></tspan></tspan></text>
|
|
202
|
+
</g>
|
|
203
|
+
</g>
|
|
204
|
+
<g class="com.sun.star.drawing.CustomShape">
|
|
205
|
+
<g id="id20">
|
|
206
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="6556" y="17871" width="4094" height="2190"/>
|
|
207
|
+
<path fill="white" stroke="none" d="M 8603,20024 L 6592,20024 6592,17907 10613,17907 10613,20024 8603,20024 Z"/>
|
|
208
|
+
<path fill="none" stroke="black" stroke-width="71" stroke-linejoin="miter" d="M 8603,20024 L 6592,20024 6592,17907 10613,17907 10613,20024 8603,20024 Z"/>
|
|
209
|
+
<text class="TextShape"><tspan class="TextParagraph" font-family="sans-serif" font-size="847px" font-weight="400"><tspan class="TextPosition" x="7500" y="18811"><tspan fill="black" stroke="none">HTTP</tspan></tspan><tspan class="TextPosition" x="7426" y="19583"><tspan fill="black" stroke="none">server</tspan></tspan></tspan></text>
|
|
210
|
+
</g>
|
|
211
|
+
</g>
|
|
212
|
+
<g class="com.sun.star.drawing.CustomShape">
|
|
213
|
+
<g id="id21">
|
|
214
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="17352" y="11310" width="6423" height="1767"/>
|
|
215
|
+
<path fill="white" stroke="none" d="M 20563,13040 L 17388,13040 17388,11346 23738,11346 23738,13040 20563,13040 Z"/>
|
|
216
|
+
<path fill="none" stroke="black" stroke-width="71" stroke-linejoin="miter" d="M 20563,13040 L 17388,13040 17388,11346 23738,11346 23738,13040 20563,13040 Z"/>
|
|
217
|
+
<text class="TextShape"><tspan class="TextParagraph" font-family="sans-serif" font-size="847px" font-weight="400"><tspan class="TextPosition" x="17765" y="12424"><tspan fill="black" stroke="none">L3/L4 balancer</tspan></tspan></tspan></text>
|
|
218
|
+
</g>
|
|
219
|
+
</g>
|
|
220
|
+
<g class="com.sun.star.drawing.CustomShape">
|
|
221
|
+
<g id="id22">
|
|
222
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="8885" y="14696" width="5153" height="1766"/>
|
|
223
|
+
<path fill="white" stroke="none" d="M 11461,16425 L 8921,16425 8921,14732 14001,14732 14001,16425 11461,16425 Z"/>
|
|
224
|
+
<path fill="none" stroke="black" stroke-width="71" stroke-linejoin="miter" d="M 11461,16425 L 8921,16425 8921,14732 14001,14732 14001,16425 11461,16425 Z"/>
|
|
225
|
+
<text class="TextShape"><tspan class="TextParagraph" font-family="sans-serif" font-size="847px" font-weight="400"><tspan class="TextPosition" x="9205" y="15810"><tspan fill="black" stroke="none">HTTP proxy</tspan></tspan></tspan></text>
|
|
226
|
+
</g>
|
|
227
|
+
</g>
|
|
228
|
+
<g class="com.sun.star.drawing.CustomShape">
|
|
229
|
+
<g id="id23">
|
|
230
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="5287" y="8135" width="6423" height="1767"/>
|
|
231
|
+
<path fill="white" stroke="none" d="M 8498,9865 L 5323,9865 5323,8171 11673,8171 11673,9865 8498,9865 Z"/>
|
|
232
|
+
<path fill="none" stroke="black" stroke-width="71" stroke-linejoin="miter" d="M 8498,9865 L 5323,9865 5323,8171 11673,8171 11673,9865 8498,9865 Z"/>
|
|
233
|
+
<text class="TextShape"><tspan class="TextParagraph" font-family="sans-serif" font-size="847px" font-weight="400"><tspan class="TextPosition" x="5884" y="9249"><tspan fill="black" stroke="none">Ingress router</tspan></tspan></tspan></text>
|
|
234
|
+
</g>
|
|
235
|
+
</g>
|
|
236
|
+
<g class="com.sun.star.drawing.CustomShape">
|
|
237
|
+
<g id="id24">
|
|
238
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="21796" y="14696" width="4518" height="1766"/>
|
|
239
|
+
<path fill="white" stroke="none" d="M 24055,16425 L 21832,16425 21832,14732 26277,14732 26277,16425 24055,16425 Z"/>
|
|
240
|
+
<path fill="none" stroke="black" stroke-width="71" stroke-linejoin="miter" d="M 24055,16425 L 21832,16425 21832,14732 26277,14732 26277,16425 24055,16425 Z"/>
|
|
241
|
+
<text class="TextShape"><tspan class="TextParagraph" font-family="sans-serif" font-size="847px" font-weight="400"><tspan class="TextPosition" x="22126" y="15810"><tspan fill="black" stroke="none">TLS proxy</tspan></tspan></tspan></text>
|
|
242
|
+
</g>
|
|
243
|
+
</g>
|
|
244
|
+
<g class="com.sun.star.drawing.CustomShape">
|
|
245
|
+
<g id="id25">
|
|
246
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="1688" y="14696" width="5153" height="1766"/>
|
|
247
|
+
<path fill="white" stroke="none" d="M 4264,16425 L 1724,16425 1724,14732 6804,14732 6804,16425 4264,16425 Z"/>
|
|
248
|
+
<path fill="none" stroke="black" stroke-width="71" stroke-linejoin="miter" d="M 4264,16425 L 1724,16425 1724,14732 6804,14732 6804,16425 4264,16425 Z"/>
|
|
249
|
+
<text class="TextShape"><tspan class="TextParagraph" font-family="sans-serif" font-size="847px" font-weight="400"><tspan class="TextPosition" x="2008" y="15810"><tspan fill="black" stroke="none">HTTP proxy</tspan></tspan></tspan></text>
|
|
250
|
+
</g>
|
|
251
|
+
</g>
|
|
252
|
+
<g class="com.sun.star.drawing.CustomShape">
|
|
253
|
+
<g id="id26">
|
|
254
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="15869" y="14696" width="4518" height="1766"/>
|
|
255
|
+
<path fill="white" stroke="none" d="M 18128,16425 L 15905,16425 15905,14732 20350,14732 20350,16425 18128,16425 Z"/>
|
|
256
|
+
<path fill="none" stroke="black" stroke-width="71" stroke-linejoin="miter" d="M 18128,16425 L 15905,16425 15905,14732 20350,14732 20350,16425 18128,16425 Z"/>
|
|
257
|
+
<text class="TextShape"><tspan class="TextParagraph" font-family="sans-serif" font-size="847px" font-weight="400"><tspan class="TextPosition" x="16199" y="15810"><tspan fill="black" stroke="none">TLS proxy</tspan></tspan></tspan></text>
|
|
258
|
+
</g>
|
|
259
|
+
</g>
|
|
260
|
+
<g class="com.sun.star.drawing.CustomShape">
|
|
261
|
+
<g id="id27">
|
|
262
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="4017" y="11310" width="6423" height="1767"/>
|
|
263
|
+
<path fill="white" stroke="none" d="M 7228,13040 L 4053,13040 4053,11346 10403,11346 10403,13040 7228,13040 Z"/>
|
|
264
|
+
<path fill="none" stroke="black" stroke-width="71" stroke-linejoin="miter" d="M 7228,13040 L 4053,13040 4053,11346 10403,11346 10403,13040 7228,13040 Z"/>
|
|
265
|
+
<text class="TextShape"><tspan class="TextParagraph" font-family="sans-serif" font-size="847px" font-weight="400"><tspan class="TextPosition" x="4430" y="12424"><tspan fill="black" stroke="none">L3/L4 balancer</tspan></tspan></tspan></text>
|
|
266
|
+
</g>
|
|
267
|
+
</g>
|
|
268
|
+
<g class="com.sun.star.drawing.CustomShape">
|
|
269
|
+
<g id="id28">
|
|
270
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="11425" y="17871" width="4095" height="2190"/>
|
|
271
|
+
<path fill="white" stroke="none" d="M 13472,20024 L 11461,20024 11461,17907 15483,17907 15483,20024 13472,20024 Z"/>
|
|
272
|
+
<path fill="none" stroke="black" stroke-width="71" stroke-linejoin="miter" d="M 13472,20024 L 11461,20024 11461,17907 15483,17907 15483,20024 13472,20024 Z"/>
|
|
273
|
+
<text class="TextShape"><tspan class="TextParagraph" font-family="sans-serif" font-size="847px" font-weight="400"><tspan class="TextPosition" x="12369" y="18811"><tspan fill="black" stroke="none">HTTP</tspan></tspan><tspan class="TextPosition" x="12295" y="19583"><tspan fill="black" stroke="none">server</tspan></tspan></tspan></text>
|
|
274
|
+
</g>
|
|
275
|
+
</g>
|
|
276
|
+
<g class="com.sun.star.drawing.CustomShape">
|
|
277
|
+
<g id="id29">
|
|
278
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="16293" y="17871" width="4095" height="2190"/>
|
|
279
|
+
<path fill="white" stroke="none" d="M 18340,20024 L 16329,20024 16329,17907 20351,17907 20351,20024 18340,20024 Z"/>
|
|
280
|
+
<path fill="none" stroke="black" stroke-width="71" stroke-linejoin="miter" d="M 18340,20024 L 16329,20024 16329,17907 20351,17907 20351,20024 18340,20024 Z"/>
|
|
281
|
+
<text class="TextShape"><tspan class="TextParagraph" font-family="sans-serif" font-size="847px" font-weight="400"><tspan class="TextPosition" x="17237" y="18811"><tspan fill="black" stroke="none">HTTP</tspan></tspan><tspan class="TextPosition" x="17163" y="19583"><tspan fill="black" stroke="none">server</tspan></tspan></tspan></text>
|
|
282
|
+
</g>
|
|
283
|
+
</g>
|
|
284
|
+
<g class="com.sun.star.drawing.CustomShape">
|
|
285
|
+
<g id="id30">
|
|
286
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="21373" y="17871" width="4095" height="2190"/>
|
|
287
|
+
<path fill="white" stroke="none" d="M 23420,20024 L 21409,20024 21409,17907 25431,17907 25431,20024 23420,20024 Z"/>
|
|
288
|
+
<path fill="none" stroke="black" stroke-width="71" stroke-linejoin="miter" d="M 23420,20024 L 21409,20024 21409,17907 25431,17907 25431,20024 23420,20024 Z"/>
|
|
289
|
+
<text class="TextShape"><tspan class="TextParagraph" font-family="sans-serif" font-size="847px" font-weight="400"><tspan class="TextPosition" x="22317" y="18811"><tspan fill="black" stroke="none">HTTP</tspan></tspan><tspan class="TextPosition" x="22243" y="19583"><tspan fill="black" stroke="none">server</tspan></tspan></tspan></text>
|
|
290
|
+
</g>
|
|
291
|
+
</g>
|
|
292
|
+
<g class="com.sun.star.drawing.CustomShape">
|
|
293
|
+
<g id="id31">
|
|
294
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="1688" y="17871" width="4095" height="2190"/>
|
|
295
|
+
<path fill="white" stroke="none" d="M 3735,20024 L 1724,20024 1724,17907 5746,17907 5746,20024 3735,20024 Z"/>
|
|
296
|
+
<path fill="none" stroke="black" stroke-width="71" stroke-linejoin="miter" d="M 3735,20024 L 1724,20024 1724,17907 5746,17907 5746,20024 3735,20024 Z"/>
|
|
297
|
+
<text class="TextShape"><tspan class="TextParagraph" font-family="sans-serif" font-size="847px" font-weight="400"><tspan class="TextPosition" x="2632" y="18811"><tspan fill="black" stroke="none">HTTP</tspan></tspan><tspan class="TextPosition" x="2558" y="19583"><tspan fill="black" stroke="none">server</tspan></tspan></tspan></text>
|
|
298
|
+
</g>
|
|
299
|
+
</g>
|
|
300
|
+
<g class="com.sun.star.drawing.LineShape">
|
|
301
|
+
<g id="id32">
|
|
302
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="4052" y="13842" width="19899" height="94"/>
|
|
303
|
+
<path fill="none" stroke="black" stroke-width="88" stroke-linejoin="miter" d="M 4053,13886 L 23949,13891"/>
|
|
304
|
+
</g>
|
|
305
|
+
</g>
|
|
306
|
+
<g class="com.sun.star.drawing.LineShape">
|
|
307
|
+
<g id="id33">
|
|
308
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="1723" y="17229" width="24345" height="93"/>
|
|
309
|
+
<path fill="none" stroke="black" stroke-width="88" stroke-linejoin="miter" d="M 1724,17273 L 26066,17277"/>
|
|
310
|
+
</g>
|
|
311
|
+
</g>
|
|
312
|
+
<g class="com.sun.star.drawing.LineShape">
|
|
313
|
+
<g id="id34">
|
|
314
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="5533" y="10667" width="16513" height="94"/>
|
|
315
|
+
<path fill="none" stroke="black" stroke-width="88" stroke-linejoin="miter" d="M 5534,10711 L 22044,10716"/>
|
|
316
|
+
</g>
|
|
317
|
+
</g>
|
|
318
|
+
<g class="com.sun.star.drawing.LineShape">
|
|
319
|
+
<g id="id35">
|
|
320
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="7427" y="10700" width="26" height="26"/>
|
|
321
|
+
<path fill="none" stroke="black" stroke-width="26" stroke-linejoin="miter" d="M 7437,10715 L 7442,10710"/>
|
|
322
|
+
</g>
|
|
323
|
+
</g>
|
|
324
|
+
<g class="com.sun.star.drawing.CustomShape">
|
|
325
|
+
<g id="id36">
|
|
326
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="11835" y="8512" width="4950" height="1176"/>
|
|
327
|
+
<text class="TextShape"><tspan class="TextParagraph" font-family="sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="12682" y="8975"><tspan fill="black" stroke="none">DNS-based</tspan></tspan><tspan class="TextPosition" x="11835" y="9554"><tspan fill="black" stroke="none"> ←load splitting→</tspan></tspan></tspan></text>
|
|
328
|
+
</g>
|
|
329
|
+
</g>
|
|
330
|
+
<g class="com.sun.star.drawing.CustomShape">
|
|
331
|
+
<g id="id37">
|
|
332
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="20388" y="15785" width="1310" height="115"/>
|
|
333
|
+
<text class="TextShape"><tspan class="TextParagraph" font-family="sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="20388" y="15898"><tspan fill="black" stroke="none"> </tspan><tspan font-size="1129px" fill="black" stroke="none">…</tspan><tspan fill="black" stroke="none"> </tspan></tspan></tspan></text>
|
|
334
|
+
</g>
|
|
335
|
+
</g>
|
|
336
|
+
<g class="com.sun.star.drawing.CustomShape">
|
|
337
|
+
<g id="id38">
|
|
338
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="249" y="18960" width="1310" height="115"/>
|
|
339
|
+
<text class="TextShape"><tspan class="TextParagraph" font-family="sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="249" y="19073"><tspan fill="black" stroke="none"> </tspan><tspan font-size="1129px" fill="black" stroke="none">…</tspan><tspan fill="black" stroke="none"> </tspan></tspan></tspan></text>
|
|
340
|
+
</g>
|
|
341
|
+
</g>
|
|
342
|
+
<g class="com.sun.star.drawing.CustomShape">
|
|
343
|
+
<g id="id39">
|
|
344
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="25532" y="19040" width="1310" height="115"/>
|
|
345
|
+
<text class="TextShape"><tspan class="TextParagraph" font-family="sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="25532" y="19153"><tspan fill="black" stroke="none"> </tspan><tspan font-size="1129px" fill="black" stroke="none">…</tspan><tspan fill="black" stroke="none"> </tspan></tspan></tspan></text>
|
|
346
|
+
</g>
|
|
347
|
+
</g>
|
|
348
|
+
<g class="com.sun.star.drawing.CustomShape">
|
|
349
|
+
<g id="id40">
|
|
350
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="7265" y="15573" width="1310" height="115"/>
|
|
351
|
+
<text class="TextShape"><tspan class="TextParagraph" font-family="sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="7265" y="15686"><tspan fill="black" stroke="none"> </tspan><tspan font-size="1129px" fill="black" stroke="none">…</tspan><tspan fill="black" stroke="none"> </tspan></tspan></tspan></text>
|
|
352
|
+
</g>
|
|
353
|
+
</g>
|
|
354
|
+
<g class="com.sun.star.drawing.CustomShape">
|
|
355
|
+
<g id="id41">
|
|
356
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="17140" y="8135" width="6423" height="1767"/>
|
|
357
|
+
<path fill="white" stroke="none" d="M 20351,9865 L 17176,9865 17176,8171 23526,8171 23526,9865 20351,9865 Z"/>
|
|
358
|
+
<path fill="none" stroke="black" stroke-width="71" stroke-linejoin="miter" d="M 20351,9865 L 17176,9865 17176,8171 23526,8171 23526,9865 20351,9865 Z"/>
|
|
359
|
+
<text class="TextShape"><tspan class="TextParagraph" font-family="sans-serif" font-size="847px" font-weight="400"><tspan class="TextPosition" x="17737" y="9249"><tspan fill="black" stroke="none">Ingress router</tspan></tspan></tspan></text>
|
|
360
|
+
</g>
|
|
361
|
+
</g>
|
|
362
|
+
<g class="com.sun.star.drawing.CustomShape">
|
|
363
|
+
<g id="id42">
|
|
364
|
+
<rect class="BoundingBox" stroke="none" fill="none" x="11236" y="10910" width="6104" height="2568"/>
|
|
365
|
+
<path fill="none" stroke="black" stroke-width="26" stroke-linejoin="round" d="M 12093,10923 C 11671,10923 11249,11134 11249,11345 L 11249,11661 11249,11978 11249,12408 11249,12725 11249,13041 C 11249,13252 11671,13464 12093,13464 L 12726,13464 13359,13464 14219,13464 14852,13464 15485,13464 C 15907,13464 16330,13252 16330,13041 L 16330,12725 16330,12408 16330,11978 17326,12165 16330,11345 C 16330,11134 15907,10923 15485,10923 L 14852,10923 14219,10923 13359,10923 12726,10923 12093,10923 Z"/>
|
|
366
|
+
<text class="TextShape"><tspan class="TextParagraph" font-family="sans-serif" font-size="847px" font-weight="400"><tspan class="TextPosition" x="11687" y="11764"><tspan fill="white" stroke="none">Possible </tspan></tspan><tspan class="TextPosition" x="11687" y="12536"><tspan fill="white" stroke="none">flow label </tspan></tspan><tspan class="TextPosition" x="11687" y="13308"><tspan fill="white" stroke="none">use</tspan></tspan></tspan></text>
|
|
367
|
+
</g>
|
|
368
|
+
</g>
|
|
369
|
+
<g class="com.sun.star.drawing.CustomShape">
|
|
370
|
+
<g id="id43">
|
|
371
|
+
<rect class="BoundingBox" stroke="black" fill="none" x="10349" y="10910" width="5995" height="2568"/>
|
|
372
|
+
<path fill="none" stroke="black" stroke-width="26" stroke-linejoin="round" d="M 12093,10923 C 11671,10923 11249,11134 11249,11345 L 10362,12165 11249,11978 11249,12408 11249,12725 11249,13041 C 11249,13252 11671,13464 12093,13464 L 12726,13464 13359,13464 14219,13464 14852,13464 15485,13464 C 15907,13464 16330,13252 16330,13041 L 16330,12725 16330,12408 16330,11978 16330,11661 16330,11345 C 16330,11134 15907,10923 15485,10923 L 14852,10923 14219,10923 13359,10923 12726,10923 12093,10923 Z"/>
|
|
373
|
+
<text class="TextShape"><tspan class="TextParagraph" font-family="sans-serif" font-size="847px" font-weight="400"><tspan class="TextPosition" x="11687" y="11764"><tspan fill="black" stroke="none">Possible </tspan></tspan><tspan class="TextPosition" x="11687" y="12536"><tspan fill="black" stroke="none">flow label </tspan></tspan><tspan class="TextPosition" x="11687" y="13308"><tspan fill="black" stroke="none">use</tspan></tspan></tspan></text>
|
|
374
|
+
</g>
|
|
375
|
+
</g>
|
|
376
|
+
</g>
|
|
377
|
+
</g>
|
|
378
|
+
</g>
|
|
379
|
+
</g>
|
|
380
|
+
</g>
|
|
381
|
+
</svg>
|
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
Tests/utf8.svg:5: The element 'clipPath' is not allowed as a child of 'defs'
|
|
2
|
+
Tests/utf8.svg:8: The element 'clipPath' is not allowed as a child of 'defs'
|
|
3
|
+
Tests/utf8.svg:13: Element 'g' does not allow attributes with namespace 'http://xml.openoffice.org/svg/export'
|
|
4
|
+
Tests/utf8.svg:13: Element 'g' does not allow attributes with namespace 'http://xml.openoffice.org/svg/export'
|
|
5
|
+
Tests/utf8.svg:14: Element 'g' does not allow attributes with namespace 'http://xml.openoffice.org/svg/export'
|
|
6
|
+
Tests/utf8.svg:14: Element 'g' does not allow attributes with namespace 'http://xml.openoffice.org/svg/export'
|
|
7
|
+
Tests/utf8.svg:14: Element 'g' does not allow attributes with namespace 'http://xml.openoffice.org/svg/export'
|
|
8
|
+
Tests/utf8.svg:14: Element 'g' does not allow attributes with namespace 'http://xml.openoffice.org/svg/export'
|
|
9
|
+
Tests/utf8.svg:14: Element 'g' does not allow attributes with namespace 'http://xml.openoffice.org/svg/export'
|
|
10
|
+
Tests/utf8.svg:15: Element 'g' does not allow attributes with namespace 'http://xml.openoffice.org/svg/export'
|
|
11
|
+
Tests/utf8.svg:15: Element 'g' does not allow attributes with namespace 'http://xml.openoffice.org/svg/export'
|
|
12
|
+
Tests/utf8.svg:15: Element 'g' does not allow attributes with namespace 'http://xml.openoffice.org/svg/export'
|
|
13
|
+
Tests/utf8.svg:15: Element 'g' does not allow attributes with namespace 'http://xml.openoffice.org/svg/export'
|
|
14
|
+
Tests/utf8.svg:15: Element 'g' does not allow attributes with namespace 'http://xml.openoffice.org/svg/export'
|
|
15
|
+
Tests/utf8.svg:20: The element 'font' is not allowed as a child of 'defs'
|
|
16
|
+
Tests/utf8.svg:72: The element 'font' is not allowed as a child of 'defs'
|
|
17
|
+
Tests/utf8.svg:79: The element 'font' is not allowed as a child of 'defs'
|
|
18
|
+
Tests/utf8.svg:86: Element 'g' does not allow attributes with namespace 'http://xml.openoffice.org/svg/export'
|
|
19
|
+
Tests/utf8.svg:86: Element 'g' does not allow attributes with namespace 'http://xml.openoffice.org/svg/export'
|
|
20
|
+
Tests/utf8.svg:122: Element 'g' does not allow attributes with namespace 'http://xml.openoffice.org/svg/export'
|
|
21
|
+
Tests/utf8.svg:126: Element 'g' does not allow attributes with namespace 'http://xml.openoffice.org/svg/export'
|
|
22
|
+
Tests/utf8.svg:128: The attribute 'fill' does not allow the value 'rgb(255,255,255)', replaced with 'white'
|
|
23
|
+
Tests/utf8.svg:131: Element 'g' does not allow attributes with namespace 'http://xml.openoffice.org/svg/export'
|
|
24
|
+
Tests/utf8.svg:134: The attribute 'font-family' does not allow the value 'Arial, sans-serif', replaced with 'sans-serif'
|
|
25
|
+
Tests/utf8.svg:134: The attribute 'fill' does not allow the value 'rgb(255,255,255)', replaced with 'white'
|
|
26
|
+
Tests/utf8.svg:142: The element 'g' does not allow the attribute 'clip-path', attribute to be removed.
|
|
27
|
+
Tests/utf8.svg:143: Element 'g' does not allow attributes with namespace 'http://xml.openoffice.org/svg/export'
|
|
28
|
+
Tests/utf8.svg:150: The element 'g' does not allow the attribute 'clip-path', attribute to be removed.
|
|
29
|
+
Tests/utf8.svg:151: Element 'g' does not allow attributes with namespace 'http://xml.openoffice.org/svg/export'
|
|
30
|
+
Tests/utf8.svg:155: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
31
|
+
Tests/utf8.svg:161: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
32
|
+
Tests/utf8.svg:167: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
33
|
+
Tests/utf8.svg:173: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
34
|
+
Tests/utf8.svg:179: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
35
|
+
Tests/utf8.svg:185: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
36
|
+
Tests/utf8.svg:191: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
37
|
+
Tests/utf8.svg:197: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
38
|
+
Tests/utf8.svg:203: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
39
|
+
Tests/utf8.svg:209: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
40
|
+
Tests/utf8.svg:215: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
41
|
+
Tests/utf8.svg:221: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
42
|
+
Tests/utf8.svg:227: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
43
|
+
Tests/utf8.svg:233: The attribute 'font-family' does not allow the value 'Arial, sans-serif', replaced with 'sans-serif'
|
|
44
|
+
Tests/utf8.svg:233: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
45
|
+
Tests/utf8.svg:239: The attribute 'stroke' does not allow the value 'rgb(128,128,128)', replaced with 'black'
|
|
46
|
+
Tests/utf8.svg:240: The attribute 'stroke' does not allow the value 'rgb(128,128,128)', replaced with 'black'
|
|
47
|
+
Tests/utf8.svg:241: The attribute 'stroke' does not allow the value 'rgb(128,128,128)', replaced with 'black'
|
|
48
|
+
Tests/utf8.svg:242: The attribute 'stroke' does not allow the value 'rgb(128,128,128)', replaced with 'black'
|
|
49
|
+
Tests/utf8.svg:243: The attribute 'stroke' does not allow the value 'rgb(128,128,128)', replaced with 'black'
|
|
50
|
+
Tests/utf8.svg:244: The attribute 'stroke' does not allow the value 'rgb(128,128,128)', replaced with 'black'
|
|
51
|
+
Tests/utf8.svg:245: The attribute 'stroke' does not allow the value 'rgb(128,128,128)', replaced with 'black'
|
|
52
|
+
Tests/utf8.svg:246: The attribute 'stroke' does not allow the value 'rgb(128,128,128)', replaced with 'black'
|
|
53
|
+
Tests/utf8.svg:247: The attribute 'stroke' does not allow the value 'rgb(128,128,128)', replaced with 'black'
|
|
54
|
+
Tests/utf8.svg:248: The attribute 'stroke' does not allow the value 'rgb(128,128,128)', replaced with 'black'
|
|
55
|
+
Tests/utf8.svg:249: The attribute 'stroke' does not allow the value 'rgb(128,128,128)', replaced with 'black'
|
|
56
|
+
Tests/utf8.svg:250: The attribute 'stroke' does not allow the value 'rgb(128,128,128)', replaced with 'black'
|
|
57
|
+
Tests/utf8.svg:251: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
58
|
+
Tests/utf8.svg:252: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
59
|
+
Tests/utf8.svg:253: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
60
|
+
Tests/utf8.svg:254: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
61
|
+
Tests/utf8.svg:255: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
62
|
+
Tests/utf8.svg:256: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
63
|
+
Tests/utf8.svg:257: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
64
|
+
Tests/utf8.svg:258: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
65
|
+
Tests/utf8.svg:259: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
66
|
+
Tests/utf8.svg:260: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
67
|
+
Tests/utf8.svg:261: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
68
|
+
Tests/utf8.svg:262: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
69
|
+
Tests/utf8.svg:268: The attribute 'font-family' does not allow the value 'Arial, sans-serif', replaced with 'sans-serif'
|
|
70
|
+
Tests/utf8.svg:268: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
71
|
+
Tests/utf8.svg:274: The attribute 'fill' does not allow the value 'rgb(255,255,255)', replaced with 'white'
|
|
72
|
+
Tests/utf8.svg:275: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
73
|
+
Tests/utf8.svg:276: The attribute 'font-family' does not allow the value 'Arial, sans-serif', replaced with 'sans-serif'
|
|
74
|
+
Tests/utf8.svg:276: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
75
|
+
Tests/utf8.svg:276: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
76
|
+
Tests/utf8.svg:282: The attribute 'fill' does not allow the value 'rgb(255,255,255)', replaced with 'white'
|
|
77
|
+
Tests/utf8.svg:283: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
78
|
+
Tests/utf8.svg:284: The attribute 'font-family' does not allow the value 'Arial, sans-serif', replaced with 'sans-serif'
|
|
79
|
+
Tests/utf8.svg:284: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
80
|
+
Tests/utf8.svg:290: The attribute 'fill' does not allow the value 'rgb(255,255,255)', replaced with 'white'
|
|
81
|
+
Tests/utf8.svg:291: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
82
|
+
Tests/utf8.svg:292: The attribute 'font-family' does not allow the value 'Arial, sans-serif', replaced with 'sans-serif'
|
|
83
|
+
Tests/utf8.svg:292: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
84
|
+
Tests/utf8.svg:298: The attribute 'fill' does not allow the value 'rgb(255,255,255)', replaced with 'white'
|
|
85
|
+
Tests/utf8.svg:299: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
86
|
+
Tests/utf8.svg:300: The attribute 'font-family' does not allow the value 'Arial, sans-serif', replaced with 'sans-serif'
|
|
87
|
+
Tests/utf8.svg:300: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
88
|
+
Tests/utf8.svg:306: The attribute 'fill' does not allow the value 'rgb(255,255,255)', replaced with 'white'
|
|
89
|
+
Tests/utf8.svg:307: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
90
|
+
Tests/utf8.svg:308: The attribute 'font-family' does not allow the value 'Arial, sans-serif', replaced with 'sans-serif'
|
|
91
|
+
Tests/utf8.svg:308: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
92
|
+
Tests/utf8.svg:314: The attribute 'fill' does not allow the value 'rgb(255,255,255)', replaced with 'white'
|
|
93
|
+
Tests/utf8.svg:315: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
94
|
+
Tests/utf8.svg:316: The attribute 'font-family' does not allow the value 'Arial, sans-serif', replaced with 'sans-serif'
|
|
95
|
+
Tests/utf8.svg:316: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
96
|
+
Tests/utf8.svg:322: The attribute 'fill' does not allow the value 'rgb(255,255,255)', replaced with 'white'
|
|
97
|
+
Tests/utf8.svg:323: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
98
|
+
Tests/utf8.svg:324: The attribute 'font-family' does not allow the value 'Arial, sans-serif', replaced with 'sans-serif'
|
|
99
|
+
Tests/utf8.svg:324: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
100
|
+
Tests/utf8.svg:330: The attribute 'fill' does not allow the value 'rgb(255,255,255)', replaced with 'white'
|
|
101
|
+
Tests/utf8.svg:331: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
102
|
+
Tests/utf8.svg:332: The attribute 'font-family' does not allow the value 'Arial, sans-serif', replaced with 'sans-serif'
|
|
103
|
+
Tests/utf8.svg:332: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
104
|
+
Tests/utf8.svg:338: The attribute 'fill' does not allow the value 'rgb(255,255,255)', replaced with 'white'
|
|
105
|
+
Tests/utf8.svg:339: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
106
|
+
Tests/utf8.svg:340: The attribute 'font-family' does not allow the value 'Arial, sans-serif', replaced with 'sans-serif'
|
|
107
|
+
Tests/utf8.svg:340: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
108
|
+
Tests/utf8.svg:340: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
109
|
+
Tests/utf8.svg:346: The attribute 'fill' does not allow the value 'rgb(255,255,255)', replaced with 'white'
|
|
110
|
+
Tests/utf8.svg:347: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
111
|
+
Tests/utf8.svg:348: The attribute 'font-family' does not allow the value 'Arial, sans-serif', replaced with 'sans-serif'
|
|
112
|
+
Tests/utf8.svg:348: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
113
|
+
Tests/utf8.svg:348: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
114
|
+
Tests/utf8.svg:354: The attribute 'fill' does not allow the value 'rgb(255,255,255)', replaced with 'white'
|
|
115
|
+
Tests/utf8.svg:355: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
116
|
+
Tests/utf8.svg:356: The attribute 'font-family' does not allow the value 'Arial, sans-serif', replaced with 'sans-serif'
|
|
117
|
+
Tests/utf8.svg:356: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
118
|
+
Tests/utf8.svg:356: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
119
|
+
Tests/utf8.svg:362: The attribute 'fill' does not allow the value 'rgb(255,255,255)', replaced with 'white'
|
|
120
|
+
Tests/utf8.svg:363: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
121
|
+
Tests/utf8.svg:364: The attribute 'font-family' does not allow the value 'Arial, sans-serif', replaced with 'sans-serif'
|
|
122
|
+
Tests/utf8.svg:364: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
123
|
+
Tests/utf8.svg:364: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
124
|
+
Tests/utf8.svg:370: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
125
|
+
Tests/utf8.svg:376: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
126
|
+
Tests/utf8.svg:382: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
127
|
+
Tests/utf8.svg:388: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
128
|
+
Tests/utf8.svg:394: The attribute 'font-family' does not allow the value 'Arial, sans-serif', replaced with 'sans-serif'
|
|
129
|
+
Tests/utf8.svg:394: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
130
|
+
Tests/utf8.svg:394: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
131
|
+
Tests/utf8.svg:400: The attribute 'font-family' does not allow the value 'Arial, sans-serif', replaced with 'sans-serif'
|
|
132
|
+
Tests/utf8.svg:400: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
133
|
+
Tests/utf8.svg:400: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
134
|
+
Tests/utf8.svg:400: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
135
|
+
Tests/utf8.svg:406: The attribute 'font-family' does not allow the value 'Arial, sans-serif', replaced with 'sans-serif'
|
|
136
|
+
Tests/utf8.svg:406: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
137
|
+
Tests/utf8.svg:406: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
138
|
+
Tests/utf8.svg:406: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
139
|
+
Tests/utf8.svg:412: The attribute 'font-family' does not allow the value 'Arial, sans-serif', replaced with 'sans-serif'
|
|
140
|
+
Tests/utf8.svg:412: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
141
|
+
Tests/utf8.svg:412: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
142
|
+
Tests/utf8.svg:412: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
143
|
+
Tests/utf8.svg:418: The attribute 'font-family' does not allow the value 'Arial, sans-serif', replaced with 'sans-serif'
|
|
144
|
+
Tests/utf8.svg:418: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
145
|
+
Tests/utf8.svg:418: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
146
|
+
Tests/utf8.svg:418: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
147
|
+
Tests/utf8.svg:424: The attribute 'fill' does not allow the value 'rgb(255,255,255)', replaced with 'white'
|
|
148
|
+
Tests/utf8.svg:425: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
149
|
+
Tests/utf8.svg:426: The attribute 'font-family' does not allow the value 'Arial, sans-serif', replaced with 'sans-serif'
|
|
150
|
+
Tests/utf8.svg:426: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
151
|
+
Tests/utf8.svg:432: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
152
|
+
Tests/utf8.svg:433: The attribute 'font-family' does not allow the value 'Arial, sans-serif', replaced with 'sans-serif'
|
|
153
|
+
Tests/utf8.svg:433: The attribute 'fill' does not allow the value 'rgb(255,255,255)', replaced with 'white'
|
|
154
|
+
Tests/utf8.svg:433: The attribute 'fill' does not allow the value 'rgb(255,255,255)', replaced with 'white'
|
|
155
|
+
Tests/utf8.svg:433: The attribute 'fill' does not allow the value 'rgb(255,255,255)', replaced with 'white'
|
|
156
|
+
Tests/utf8.svg:438: The attribute 'stroke' does not allow the value 'no—ne', replaced with 'black'
|
|
157
|
+
Tests/utf8.svg:439: The attribute 'stroke' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
158
|
+
Tests/utf8.svg:440: The attribute 'font-family' does not allow the value 'Arial, sans-serif', replaced with 'sans-serif'
|
|
159
|
+
Tests/utf8.svg:440: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
160
|
+
Tests/utf8.svg:440: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
161
|
+
Tests/utf8.svg:440: The attribute 'fill' does not allow the value 'rgb(0,0,0)', replaced with 'black'
|
|
162
|
+
ERROR: File does not conform to SVG requirements
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1
|
|
File without changes
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
Tests/viewBox-both.svg:1: The attribute viewBox is required on the root svg element
|
|
2
|
+
Tests/viewBox-both.svg:1: Trying to put in the attribute with value '0 0 100.0 100.0'
|
|
3
|
+
Tests/viewBox-both.svg:2: The attribute 'fill' does not allow the value 'red', replaced with 'black'
|
|
4
|
+
ERROR: File does not conform to SVG requirements
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1
|
|
File without changes
|