├── .eslintrc.json ├── .github ├── pull_request_template.md └── workflows │ ├── browser-tests.yaml │ ├── ci.yaml │ ├── cross-merge.yaml │ ├── pr-assign.yaml │ ├── pr-check.yaml │ └── release.yaml ├── .gitignore ├── .php_cs ├── .prettierrc ├── COPYRIGHT ├── LICENSE ├── LICENSE-bul ├── README.md ├── bin └── .travis │ └── prepare_unittest.sh ├── composer.json ├── ignore-by-php-version.neon.php ├── ignore-gte-php8.0-errors.neon ├── ignore-lte-php7.4-errors.neon ├── phpstan-baseline.neon ├── phpstan.neon ├── phpunit-integration-legacy-solr.xml ├── phpunit-integration-legacy.xml ├── phpunit.xml ├── src ├── bundle │ ├── DependencyInjection │ │ ├── Compiler │ │ │ └── RichTextHtml5ConverterPass.php │ │ ├── Configuration.php │ │ ├── Configuration │ │ │ └── Parser │ │ │ │ └── FieldType │ │ │ │ └── RichText.php │ │ └── EzPlatformRichTextExtension.php │ ├── EzPlatformRichTextBundle.php │ ├── Resources │ │ ├── config │ │ │ ├── api.yaml │ │ │ ├── bazinga_js_translation.yaml │ │ │ ├── configuration.yaml │ │ │ ├── default_settings.yaml │ │ │ ├── fieldtype_services.yaml │ │ │ ├── form.yaml │ │ │ ├── prepend │ │ │ │ ├── ezpublish.yaml │ │ │ │ └── ezrichtext.yaml │ │ │ ├── rest.yaml │ │ │ ├── templating.yaml │ │ │ ├── translation.yaml │ │ │ └── ui │ │ │ │ └── mappers.yaml │ │ ├── encore │ │ │ └── ez.config.js │ │ ├── public │ │ │ ├── assets │ │ │ │ └── images │ │ │ │ │ └── custom_tags │ │ │ │ │ └── admin │ │ │ │ │ └── icons │ │ │ │ │ ├── facebook.svg │ │ │ │ │ ├── twitter.svg │ │ │ │ │ └── video.svg │ │ │ ├── fonts │ │ │ │ ├── alloyeditor-ez.eot │ │ │ │ ├── alloyeditor-ez.svg │ │ │ │ ├── alloyeditor-ez.ttf │ │ │ │ ├── alloyeditor-ez.woff │ │ │ │ └── alloyeditor-ez.woff2 │ │ │ ├── js │ │ │ │ └── OnlineEditor │ │ │ │ │ ├── buttons │ │ │ │ │ ├── base │ │ │ │ │ │ ├── ez-blocktextalign.js │ │ │ │ │ │ ├── ez-button.js │ │ │ │ │ │ ├── ez-embedalign.js │ │ │ │ │ │ ├── ez-embeddiscovercontent.js │ │ │ │ │ │ ├── ez-embedimage.js │ │ │ │ │ │ └── ez-widgetbutton.js │ │ │ │ │ ├── ez-btn-anchor.js │ │ │ │ │ ├── ez-btn-anchoredit.js │ │ │ │ │ ├── ez-btn-attributes-edit.js │ │ │ │ │ ├── ez-btn-attributes-update.js │ │ │ │ │ ├── ez-btn-blocktextaligncenter.js │ │ │ │ │ ├── ez-btn-blocktextalignjustify.js │ │ │ │ │ ├── ez-btn-blocktextalignleft.js │ │ │ │ │ ├── ez-btn-blocktextalignright.js │ │ │ │ │ ├── ez-btn-bold.js │ │ │ │ │ ├── ez-btn-customtag-edit.js │ │ │ │ │ ├── ez-btn-customtag-update.js │ │ │ │ │ ├── ez-btn-customtag.js │ │ │ │ │ ├── ez-btn-dropdown.js │ │ │ │ │ ├── ez-btn-embed.js │ │ │ │ │ ├── ez-btn-embedaligncenter.js │ │ │ │ │ ├── ez-btn-embedalignleft.js │ │ │ │ │ ├── ez-btn-embedalignright.js │ │ │ │ │ ├── ez-btn-embedinline.js │ │ │ │ │ ├── ez-btn-embedupdate.js │ │ │ │ │ ├── ez-btn-heading.js │ │ │ │ │ ├── ez-btn-image.js │ │ │ │ │ ├── ez-btn-imagelink.js │ │ │ │ │ ├── ez-btn-imagelinkedit.js │ │ │ │ │ ├── ez-btn-imageupdate.js │ │ │ │ │ ├── ez-btn-imagevariation.js │ │ │ │ │ ├── ez-btn-inlinecustomtag-edit.js │ │ │ │ │ ├── ez-btn-inlinecustomtag-update.js │ │ │ │ │ ├── ez-btn-inlinecustomtag.js │ │ │ │ │ ├── ez-btn-italic.js │ │ │ │ │ ├── ez-btn-link.js │ │ │ │ │ ├── ez-btn-linkedit.js │ │ │ │ │ ├── ez-btn-movedown.js │ │ │ │ │ ├── ez-btn-moveup.js │ │ │ │ │ ├── ez-btn-orderedlist.js │ │ │ │ │ ├── ez-btn-paragraph.js │ │ │ │ │ ├── ez-btn-quote.js │ │ │ │ │ ├── ez-btn-removeblock.js │ │ │ │ │ ├── ez-btn-strike.js │ │ │ │ │ ├── ez-btn-styleslist.js │ │ │ │ │ ├── ez-btn-styleslistitem.js │ │ │ │ │ ├── ez-btn-subscript.js │ │ │ │ │ ├── ez-btn-superscript.js │ │ │ │ │ ├── ez-btn-table.js │ │ │ │ │ ├── ez-btn-tablecell.js │ │ │ │ │ ├── ez-btn-tablecolumn.js │ │ │ │ │ ├── ez-btn-tableremove.js │ │ │ │ │ ├── ez-btn-tablerow.js │ │ │ │ │ ├── ez-btn-underline.js │ │ │ │ │ └── ez-btn-unorderedlist.js │ │ │ │ │ ├── core │ │ │ │ │ ├── base-richtext.js │ │ │ │ │ ├── ez-attributes.js │ │ │ │ │ ├── ez-custom-tags.js │ │ │ │ │ └── table.js │ │ │ │ │ ├── plugins │ │ │ │ │ ├── base │ │ │ │ │ │ ├── ez-custom-tag-base.js │ │ │ │ │ │ └── ez-embed-base.js │ │ │ │ │ ├── ez-add-content.js │ │ │ │ │ ├── ez-caret.js │ │ │ │ │ ├── ez-custom-tag.js │ │ │ │ │ ├── ez-elements-path.js │ │ │ │ │ ├── ez-embed.js │ │ │ │ │ ├── ez-focus-block.js │ │ │ │ │ ├── ez-move-element.js │ │ │ │ │ └── ez-remove-block.js │ │ │ │ │ └── toolbars │ │ │ │ │ ├── config │ │ │ │ │ ├── base-buttons.js │ │ │ │ │ ├── base-fixed.js │ │ │ │ │ ├── base-list.js │ │ │ │ │ ├── base-table.js │ │ │ │ │ ├── base.js │ │ │ │ │ ├── ez-custom-style.js │ │ │ │ │ ├── ez-custom-tag.js │ │ │ │ │ ├── ez-embed-inline.js │ │ │ │ │ ├── ez-embed.js │ │ │ │ │ ├── ez-formatted.js │ │ │ │ │ ├── ez-heading.js │ │ │ │ │ ├── ez-image-link.js │ │ │ │ │ ├── ez-image.js │ │ │ │ │ ├── ez-inline-custom-tag.js │ │ │ │ │ ├── ez-link.js │ │ │ │ │ ├── ez-list-item.js │ │ │ │ │ ├── ez-list-ordered.js │ │ │ │ │ ├── ez-list-unordered.js │ │ │ │ │ ├── ez-paragraph.js │ │ │ │ │ ├── ez-table-cell.js │ │ │ │ │ ├── ez-table-header.js │ │ │ │ │ ├── ez-table-row.js │ │ │ │ │ ├── ez-table.js │ │ │ │ │ └── ez-text.js │ │ │ │ │ └── ez-add.js │ │ │ └── scss │ │ │ │ ├── _alloyeditor-ez.scss │ │ │ │ ├── _anchor-edit.scss │ │ │ │ ├── _attributes.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _character-counter.scss │ │ │ │ ├── _custom-styles.scss │ │ │ │ ├── _custom-tag.scss │ │ │ │ ├── _elements-path.scss │ │ │ │ ├── _inputs.scss │ │ │ │ ├── _link-edit.scss │ │ │ │ ├── _tools.scss │ │ │ │ ├── alloyeditor.scss │ │ │ │ ├── functions │ │ │ │ ├── calculate.rem.scss │ │ │ │ └── checkbox-switcher.scss │ │ │ │ └── variables │ │ │ │ ├── colors.scss │ │ │ │ └── vars.scss │ │ ├── translations │ │ │ ├── alloy_editor.en.xliff │ │ │ ├── custom_tags.en.xliff │ │ │ ├── fieldtypes.en.xliff │ │ │ └── online_editor.en.xliff │ │ └── views │ │ │ ├── RichText │ │ │ ├── content_fields.html.twig │ │ │ ├── embed │ │ │ │ ├── content.html.twig │ │ │ │ ├── content_denied.html.twig │ │ │ │ ├── content_inline.html.twig │ │ │ │ ├── content_inline_denied.html.twig │ │ │ │ ├── location.html.twig │ │ │ │ ├── location_denied.html.twig │ │ │ │ ├── location_inline.html.twig │ │ │ │ └── location_inline_denied.html.twig │ │ │ ├── fielddefinition_settings.html.twig │ │ │ ├── style │ │ │ │ ├── default.html.twig │ │ │ │ └── default_inline.html.twig │ │ │ └── tag │ │ │ │ ├── default.html.twig │ │ │ │ └── default_inline.html.twig │ │ │ └── themes │ │ │ └── standard │ │ │ └── ezrichtext │ │ │ └── custom_tags │ │ │ ├── ezfacebook.html.twig │ │ │ ├── eztwitter.html.twig │ │ │ └── ezyoutube.html.twig │ ├── Templating │ │ └── Twig │ │ │ └── Extension │ │ │ ├── RichTextConfigurationExtension.php │ │ │ ├── RichTextConverterExtension.php │ │ │ └── YoutubeIdExtractorExtension.php │ └── eZ │ │ └── RichText │ │ ├── Converter │ │ ├── Html5.php │ │ ├── Html5Edit.php │ │ └── Html5Input.php │ │ └── Renderer.php └── lib │ ├── API │ └── Configuration │ │ └── ProviderService.php │ ├── Configuration │ ├── AggregateProvider.php │ ├── Provider │ │ ├── AlloyEditor.php │ │ ├── CustomStyle.php │ │ └── CustomTag.php │ └── UI │ │ └── Mapper │ │ ├── CustomStyle.php │ │ ├── CustomTag.php │ │ ├── CustomTag │ │ ├── AttributeMapper.php │ │ ├── ChoiceAttributeMapper.php │ │ └── CommonAttributeMapper.php │ │ ├── CustomTemplateConfigMapper.php │ │ ├── OnlineEditor.php │ │ └── OnlineEditorConfigMapper.php │ ├── Form │ ├── DataTransformer │ │ ├── RichTextTransformer.php │ │ └── RichTextValueTransformer.php │ ├── Mapper │ │ └── RichTextFormMapper.php │ └── Type │ │ ├── RichTextFieldType.php │ │ └── RichTextType.php │ ├── RichText │ ├── Converter │ │ └── LiteralLayoutNestedList.php │ └── XMLSanitizer.php │ ├── SPI │ └── Configuration │ │ └── Provider.php │ ├── Translation │ └── Extractor │ │ └── OnlineEditorCustomAttributesExtractor.php │ ├── Validator │ └── Constraints │ │ ├── RichText.php │ │ └── RichTextValidator.php │ └── eZ │ ├── FieldType │ └── RichText │ │ ├── RichTextStorage.php │ │ ├── RichTextStorage │ │ ├── Gateway.php │ │ └── Gateway │ │ │ └── DoctrineStorage.php │ │ ├── SearchField.php │ │ ├── Type.php │ │ └── Value.php │ ├── Persistence │ └── Legacy │ │ └── RichTextFieldValueConverter.php │ ├── REST │ └── FieldTypeProcessor │ │ └── RichTextProcessor.php │ ├── RichText │ ├── Converter.php │ ├── Converter │ │ ├── Aggregate.php │ │ ├── Link.php │ │ ├── ProgramListing.php │ │ ├── Render.php │ │ ├── Render │ │ │ ├── Embed.php │ │ │ └── Template.php │ │ └── Xslt.php │ ├── ConverterDispatcher.php │ ├── DOMDocumentFactory.php │ ├── Exception │ │ └── InvalidXmlException.php │ ├── InputHandler.php │ ├── InputHandlerInterface.php │ ├── Normalizer.php │ ├── Normalizer │ │ ├── Aggregate.php │ │ └── DocumentTypeDefinition.php │ ├── README.md │ ├── RelationProcessor.php │ ├── RendererInterface.php │ ├── Resources │ │ ├── Readme.md │ │ ├── dtd │ │ │ └── ezxhtml5_edit_html_character_entities.dtd │ │ ├── schemas │ │ │ ├── docbook │ │ │ │ ├── Readme.rst │ │ │ │ ├── docbook.iso.sch │ │ │ │ ├── docbook.iso.sch.xsl │ │ │ │ ├── docbook.rng │ │ │ │ ├── docbook.sch │ │ │ │ └── ezpublish.rng │ │ │ └── ezxhtml5 │ │ │ │ └── output │ │ │ │ ├── changes.rst │ │ │ │ ├── ezxhtml5.xsd │ │ │ │ └── xml.xsd │ │ └── stylesheets │ │ │ ├── docbook │ │ │ └── xhtml5 │ │ │ │ ├── edit │ │ │ │ ├── core.xsl │ │ │ │ ├── fragment.xsl │ │ │ │ └── xhtml5.xsl │ │ │ │ └── output │ │ │ │ ├── core.xsl │ │ │ │ ├── fragment.xsl │ │ │ │ └── xhtml5.xsl │ │ │ ├── schematron │ │ │ ├── iso_abstract_expand.xsl │ │ │ ├── iso_dsdl_include.xsl │ │ │ ├── iso_schematron_skeleton_for_xslt1.xsl │ │ │ ├── iso_svrl_for_xslt1.xsl │ │ │ └── sch2xsl.sh │ │ │ └── xhtml5 │ │ │ ├── edit │ │ │ └── docbook.xsl │ │ │ └── output │ │ │ └── fragment.xsl │ ├── Validator │ │ ├── CustomTagsValidator.php │ │ ├── InternalLinkValidator.php │ │ ├── Validator.php │ │ ├── ValidatorAggregate.php │ │ └── ValidatorDispatcher.php │ ├── ValidatorInterface.php │ └── XmlBase.php │ └── settings │ ├── fieldtype_external_storages.yaml │ ├── fieldtype_services.yaml │ ├── fieldtypes.yaml │ ├── indexable_fieldtypes.yaml │ └── storage_engines │ └── legacy │ ├── external_storage_gateways.yaml │ └── field_value_converters.yaml └── tests ├── bootstrap.php ├── bundle ├── DependencyInjection │ ├── Compiler │ │ └── RichTextHtml5ConverterPassTest.php │ ├── Configuration │ │ ├── ConfigurationTest.php │ │ └── Parser │ │ │ └── FieldType │ │ │ └── RichTextTest.php │ ├── EzPlatformRichTextExtensionTest.php │ └── Fixtures │ │ ├── custom_tags │ │ ├── input │ │ │ ├── 000-attribute-type-number.yaml │ │ │ ├── 001-attribute-type-string.yaml │ │ │ ├── 002-attribute-type-boolean.yaml │ │ │ ├── 003-attribute-type-choice.yaml │ │ │ └── 004-attribute-type-link.yaml │ │ └── output │ │ │ ├── 000-attribute-type-number.yaml │ │ │ ├── 001-attribute-type-string.yaml │ │ │ ├── 002-attribute-type-boolean.yaml │ │ │ ├── 003-attribute-type-choice.yaml │ │ │ └── 004-attribute-type-link.yaml │ │ ├── ezpublish.yaml │ │ └── ezrichtext.yaml ├── Templating │ └── Twig │ │ └── Extension │ │ └── YoutubeIdExtractorExtensionTest.php └── eZ │ └── RichText │ └── RendererTest.php ├── integration └── eZ │ ├── API │ ├── RichTextFieldTypeIntegrationTest.php │ ├── SetupFactory │ │ ├── LegacySetupFactory.php │ │ ├── RichTextSetupFactoryTrait.php │ │ └── SolrLegacySetupFactory.php │ └── _fixtures │ │ └── ezrichtext │ │ └── custom_tags │ │ ├── invalid │ │ ├── equation.xml │ │ ├── nested.xml │ │ ├── unknown_tag.xml │ │ └── video.xml │ │ └── valid │ │ ├── equation.xml │ │ ├── nested.xml │ │ └── video.xml │ └── SPI │ └── RichTextFieldTypeIntegrationTest.php └── lib ├── Configuration ├── AggregateProviderTest.php ├── Provider │ ├── AlloyEditorTest.php │ ├── BaseCustomTemplateProviderTestCase.php │ ├── BaseProviderTestCase.php │ ├── CustomStyleProviderTest.php │ └── CustomTagProviderTest.php └── UI │ └── Mapper │ ├── CustomTagTest.php │ └── OnlineEditorTest.php ├── Form └── DataTransformer │ └── RichTextTransformerTest.php ├── RichText └── Converter │ └── LiteralLayoutNestedListTest.php ├── Validator └── Constraints │ └── RichTextValidatorTest.php └── eZ ├── FieldType ├── RichText │ ├── Gateway │ │ ├── DoctrineStorageTest.php │ │ └── _fixtures │ │ │ └── contentobjects.php │ ├── RichTextStorageTest.php │ └── SearchFieldTest.php └── RichTextTest.php ├── Persistence └── Legacy │ └── RichTextFieldValueConverterTest.php ├── REST └── FieldTypeProcessor │ └── RichTextProcessorTest.php ├── RichText ├── Converter │ ├── AggregateTest.php │ ├── LinkTest.php │ ├── Render │ │ ├── EmbedTest.php │ │ ├── TemplateTest.php │ │ └── _fixtures │ │ │ └── template │ │ │ ├── input │ │ │ ├── 00-block.xml │ │ │ ├── 01-complex-config.xml │ │ │ ├── 02-block-inline.xml │ │ │ ├── 03-inline.xml │ │ │ ├── 04-block-nested-template.xml │ │ │ ├── 05-block-content-config.xml │ │ │ ├── 06-custom-style-block.xml │ │ │ ├── 07-custom-style-block-inline.xml │ │ │ └── 08-line-breaks.xml │ │ │ └── output │ │ │ ├── 00-block.xml │ │ │ ├── 01-complex-config.xml │ │ │ ├── 02-block-inline.xml │ │ │ ├── 03-inline.xml │ │ │ ├── 04-block-nested-template.xml │ │ │ ├── 05-block-content-config.xml │ │ │ ├── 06-custom-style-block.xml │ │ │ ├── 07-custom-style-block-inline.xml │ │ │ └── 08-line-breaks.xml │ └── Xslt │ │ ├── BaseTest.php │ │ ├── DebugRenderer.php │ │ ├── DocbookToXhtml5EditTest.php │ │ ├── DocbookToXhtml5OutputTest.php │ │ ├── Xhtml5ToDocbookTest.php │ │ └── _fixtures │ │ ├── docbook │ │ ├── 001-title.xml │ │ ├── 002-para.xml │ │ ├── 003-section.xml │ │ ├── 004-sectionNested.xml │ │ ├── 005-emphasis.xml │ │ ├── 006-emphasisStrong.xml │ │ ├── 007-emphasisUnderlined.xml │ │ ├── 008-orderedList.xml │ │ ├── 009-itemizedList.xml │ │ ├── 010-htmlInformaltable.xml │ │ ├── 011-htmlTable.xml │ │ ├── 012-literallayout.xml │ │ ├── 013-anchor.xml │ │ ├── 014-link.xml │ │ ├── 015-subscript.xml │ │ ├── 016-superscript.xml │ │ ├── 017-customYoutube.xml │ │ ├── 018-htmlTable.xml │ │ ├── 019-emphasisStrikedthrough.xml │ │ ├── 020-blockquote.xml │ │ ├── 021-titleImplicitLevels.xml │ │ ├── 022-embed.xml │ │ ├── 023-embedInline.xml │ │ ├── 024-template.xml │ │ ├── 025-templateInline.xml │ │ ├── 026-tableTitles.xml │ │ ├── 027-linkedEmbed.xml │ │ ├── 028-linkedEmbedInline.xml │ │ ├── 029-htmlEntities.xml │ │ ├── 030-emphasisStrikedthroughDeleted.xml │ │ ├── 031-ezstyle.xml │ │ ├── 032-ezstyleinline.xml │ │ ├── 033-programlisting.xml │ │ ├── 034-nestedTemplate.xml │ │ ├── 035-itemizedListWithNestedElements.xml │ │ ├── 036-orderedListWithLinefeeds.xml │ │ ├── 037-itemizedListWithLinefeeds.xml │ │ ├── custom_schemas │ │ │ └── youtube.rng │ │ ├── custom_stylesheets │ │ │ ├── youtube_ezxml.xsl │ │ │ ├── youtube_xhtml5_edit.xsl │ │ │ └── youtube_xhtml5_output.xsl │ │ └── lossy │ │ │ ├── 001-embedPayload.docbook.xml │ │ │ ├── 001-embedPayload.xhtml5.output.xml │ │ │ ├── 002-embedInlinePayload.docbook.xml │ │ │ └── 002-embedInlinePayload.xhtml5.output.xml │ │ └── xhtml5 │ │ ├── edit │ │ ├── 001-title.xml │ │ ├── 002-para.xml │ │ ├── 003-section.xml │ │ ├── 004-sectionNested.xml │ │ ├── 005-emphasis.xml │ │ ├── 006-emphasisStrong.xml │ │ ├── 007-emphasisUnderlined.xml │ │ ├── 008-orderedList.xml │ │ ├── 009-itemizedList.xml │ │ ├── 010-htmlInformaltable.xml │ │ ├── 011-htmlTable.xml │ │ ├── 012-literallayout.xml │ │ ├── 013-anchor.xml │ │ ├── 014-link.xml │ │ ├── 015-subscript.xml │ │ ├── 016-superscript.xml │ │ ├── 017-customYoutube.xml │ │ ├── 018-htmlTable.xml │ │ ├── 019-emphasisStrikedthrough.xml │ │ ├── 020-blockquote.xml │ │ ├── 021-titleImplicitLevels.lossy.xml │ │ ├── 022-embed.xml │ │ ├── 023-embedInline.xml │ │ ├── 024-template.xml │ │ ├── 025-templateInline.xml │ │ ├── 026-tableTitles.xml │ │ ├── 027-linkedEmbed.xml │ │ ├── 028-linkedEmbedInline.xml │ │ ├── 029-htmlEntities.xml │ │ ├── 030-emphasisStrikedthroughDeleted.xml │ │ ├── 031-ezstyle.xml │ │ ├── 032-ezstyleinline.xml │ │ ├── 033-programlisting.xml │ │ ├── 034-nestedTemplate.xml │ │ ├── 035-itemizedListWithNestedElements.xml │ │ ├── 036-orderedListWithLinefeeds.xml │ │ ├── 037-itemizedListWithLinefeeds.xml │ │ ├── custom_stylesheets │ │ │ └── youtube_docbook.xsl │ │ └── lossy │ │ │ ├── 001-embedContent.docbook.xml │ │ │ ├── 001-embedContent.xhtml5.edit.xml │ │ │ ├── 002-embedInlineContent.docbook.xml │ │ │ ├── 002-embedInlineContent.xhtml5.edit.xml │ │ │ ├── 003-inlinestyles.docbook.xml │ │ │ ├── 003-inlinestyles.xhtml5.edit.xml │ │ │ ├── 004-itemizedList.docbook.xml │ │ │ ├── 004-itemizedList.xhtml5.edit.xml │ │ │ ├── 005-orderedList.docbook.xml │ │ │ ├── 005-orderedList.xhtml5.edit.xml │ │ │ ├── 006-paragraph.docbook.xml │ │ │ ├── 006-paragraph.xhtml5.edit.xml │ │ │ ├── 007-table.docbook.xml │ │ │ ├── 007-table.xhtml5.edit.xml │ │ │ ├── 008-anchor.docbook.xml │ │ │ ├── 008-anchor.xhtml5.edit.xml │ │ │ ├── 009-ezxhtmlTextalignInvalid.docbook.xml │ │ │ ├── 009-ezxhtmlTextalignInvalid.xhtml5.edit.xml │ │ │ ├── 010-duplicatedIds.docbook.xml │ │ │ └── 010-duplicatedIds.xhtml5.edit.xml │ │ └── output │ │ ├── 001-title.xml │ │ ├── 002-para.xml │ │ ├── 003-section.xml │ │ ├── 004-sectionNested.xml │ │ ├── 005-emphasis.xml │ │ ├── 006-emphasisStrong.xml │ │ ├── 007-emphasisUnderlined.xml │ │ ├── 008-orderedList.xml │ │ ├── 009-itemizedList.xml │ │ ├── 010-htmlInformaltable.xml │ │ ├── 011-htmlTable.xml │ │ ├── 012-literallayout.xml │ │ ├── 013-anchor.xml │ │ ├── 014-link.xml │ │ ├── 015-subscript.xml │ │ ├── 016-superscript.xml │ │ ├── 017-customYoutube.xml │ │ ├── 018-htmlTable.xml │ │ ├── 019-emphasisStrikedthrough.xml │ │ ├── 020-blockquote.xml │ │ ├── 021-titleImplicitLevels.xml │ │ ├── 022-embed.xml │ │ ├── 023-embedInline.xml │ │ ├── 024-template.xml │ │ ├── 025-templateInline.xml │ │ ├── 026-tableTitles.xml │ │ ├── 027-linkedEmbed.xml │ │ ├── 028-linkedEmbedInline.xml │ │ ├── 029-htmlEntities.xml │ │ ├── 030-emphasisStrikedthroughDeleted.xml │ │ ├── 031-ezstyle.xml │ │ ├── 032-ezstyleinline.xml │ │ ├── 033-programlisting.xml │ │ ├── 034-nestedTemplate.xml │ │ ├── 035-itemizedListWithNestedElements.xml │ │ ├── 036-orderedListWithLinefeeds.xml │ │ ├── 037-itemizedListWithLinefeeds.xml │ │ └── custom_schemas │ │ └── custom.xsd ├── DOMDocumentFactoryTest.php ├── InputHandlerTest.php ├── Normalizer │ ├── DocumentTypeDefinitionTest.php │ └── _fixtures │ │ ├── pound.dtd │ │ └── weird_drink.dtd ├── RelationProcessorTest.php └── Validator │ ├── CustomTagsValidatorTest.php │ ├── DocbookTest.php │ ├── InternalLinkValidatorTest.php │ └── ValidatorAggregateTest.php └── settings └── common.yaml /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/browser-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/.github/workflows/browser-tests.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/cross-merge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/.github/workflows/cross-merge.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-assign.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/.github/workflows/pr-assign.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/.github/workflows/pr-check.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /composer.lock 3 | /.php_cs.cache 4 | -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/.php_cs -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/.prettierrc -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-bul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/LICENSE-bul -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/README.md -------------------------------------------------------------------------------- /bin/.travis/prepare_unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/bin/.travis/prepare_unittest.sh -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/composer.json -------------------------------------------------------------------------------- /ignore-by-php-version.neon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/ignore-by-php-version.neon.php -------------------------------------------------------------------------------- /ignore-gte-php8.0-errors.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/ignore-gte-php8.0-errors.neon -------------------------------------------------------------------------------- /ignore-lte-php7.4-errors.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/ignore-lte-php7.4-errors.neon -------------------------------------------------------------------------------- /phpstan-baseline.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/phpstan-baseline.neon -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit-integration-legacy-solr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/phpunit-integration-legacy-solr.xml -------------------------------------------------------------------------------- /phpunit-integration-legacy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/phpunit-integration-legacy.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/bundle/DependencyInjection/Compiler/RichTextHtml5ConverterPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/DependencyInjection/Compiler/RichTextHtml5ConverterPass.php -------------------------------------------------------------------------------- /src/bundle/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/bundle/DependencyInjection/Configuration/Parser/FieldType/RichText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/DependencyInjection/Configuration/Parser/FieldType/RichText.php -------------------------------------------------------------------------------- /src/bundle/DependencyInjection/EzPlatformRichTextExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/DependencyInjection/EzPlatformRichTextExtension.php -------------------------------------------------------------------------------- /src/bundle/EzPlatformRichTextBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/EzPlatformRichTextBundle.php -------------------------------------------------------------------------------- /src/bundle/Resources/config/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/config/api.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/config/bazinga_js_translation.yaml: -------------------------------------------------------------------------------- 1 | active_domains: 2 | - 'alloy_editor' 3 | -------------------------------------------------------------------------------- /src/bundle/Resources/config/configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/config/configuration.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/config/default_settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/config/default_settings.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/config/fieldtype_services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/config/fieldtype_services.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/config/form.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/config/form.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/config/prepend/ezpublish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/config/prepend/ezpublish.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/config/prepend/ezrichtext.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/config/prepend/ezrichtext.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/config/rest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/config/rest.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/config/templating.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/config/templating.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/config/translation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/config/translation.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/config/ui/mappers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/config/ui/mappers.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/encore/ez.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/encore/ez.config.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/assets/images/custom_tags/admin/icons/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/assets/images/custom_tags/admin/icons/facebook.svg -------------------------------------------------------------------------------- /src/bundle/Resources/public/assets/images/custom_tags/admin/icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/assets/images/custom_tags/admin/icons/twitter.svg -------------------------------------------------------------------------------- /src/bundle/Resources/public/assets/images/custom_tags/admin/icons/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/assets/images/custom_tags/admin/icons/video.svg -------------------------------------------------------------------------------- /src/bundle/Resources/public/fonts/alloyeditor-ez.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/fonts/alloyeditor-ez.eot -------------------------------------------------------------------------------- /src/bundle/Resources/public/fonts/alloyeditor-ez.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/fonts/alloyeditor-ez.svg -------------------------------------------------------------------------------- /src/bundle/Resources/public/fonts/alloyeditor-ez.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/fonts/alloyeditor-ez.ttf -------------------------------------------------------------------------------- /src/bundle/Resources/public/fonts/alloyeditor-ez.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/fonts/alloyeditor-ez.woff -------------------------------------------------------------------------------- /src/bundle/Resources/public/fonts/alloyeditor-ez.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/fonts/alloyeditor-ez.woff2 -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/base/ez-blocktextalign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/base/ez-blocktextalign.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/base/ez-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/base/ez-button.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/base/ez-embedalign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/base/ez-embedalign.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/base/ez-embeddiscovercontent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/base/ez-embeddiscovercontent.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/base/ez-embedimage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/base/ez-embedimage.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/base/ez-widgetbutton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/base/ez-widgetbutton.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-anchor.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-anchoredit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-anchoredit.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-attributes-edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-attributes-edit.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-attributes-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-attributes-update.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-blocktextaligncenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-blocktextaligncenter.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-blocktextalignjustify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-blocktextalignjustify.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-blocktextalignleft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-blocktextalignleft.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-blocktextalignright.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-blocktextalignright.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-bold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-bold.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-customtag-edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-customtag-edit.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-customtag-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-customtag-update.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-customtag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-customtag.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-dropdown.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-embed.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-embedaligncenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-embedaligncenter.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-embedalignleft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-embedalignleft.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-embedalignright.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-embedalignright.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-embedinline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-embedinline.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-embedupdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-embedupdate.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-heading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-heading.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-image.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-imagelink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-imagelink.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-imagelinkedit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-imagelinkedit.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-imageupdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-imageupdate.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-imagevariation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-imagevariation.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-inlinecustomtag-edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-inlinecustomtag-edit.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-inlinecustomtag-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-inlinecustomtag-update.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-inlinecustomtag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-inlinecustomtag.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-italic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-italic.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-link.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-linkedit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-linkedit.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-movedown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-movedown.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-moveup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-moveup.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-orderedlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-orderedlist.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-paragraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-paragraph.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-quote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-quote.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-removeblock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-removeblock.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-strike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-strike.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-styleslist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-styleslist.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-styleslistitem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-styleslistitem.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-subscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-subscript.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-superscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-superscript.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-table.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-tablecell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-tablecell.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-tablecolumn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-tablecolumn.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-tableremove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-tableremove.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-tablerow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-tablerow.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-underline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-underline.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-unorderedlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/buttons/ez-btn-unorderedlist.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/core/base-richtext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/core/base-richtext.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/core/ez-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/core/ez-attributes.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/core/ez-custom-tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/core/ez-custom-tags.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/core/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/core/table.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/plugins/base/ez-custom-tag-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/plugins/base/ez-custom-tag-base.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/plugins/base/ez-embed-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/plugins/base/ez-embed-base.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/plugins/ez-add-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/plugins/ez-add-content.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/plugins/ez-caret.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/plugins/ez-caret.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/plugins/ez-custom-tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/plugins/ez-custom-tag.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/plugins/ez-elements-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/plugins/ez-elements-path.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/plugins/ez-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/plugins/ez-embed.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/plugins/ez-focus-block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/plugins/ez-focus-block.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/plugins/ez-move-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/plugins/ez-move-element.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/plugins/ez-remove-block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/plugins/ez-remove-block.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/toolbars/config/base-buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/toolbars/config/base-buttons.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/toolbars/config/base-fixed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/toolbars/config/base-fixed.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/toolbars/config/base-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/toolbars/config/base-list.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/toolbars/config/base-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/toolbars/config/base-table.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/toolbars/config/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/toolbars/config/base.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-custom-style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-custom-style.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-custom-tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-custom-tag.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-embed-inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-embed-inline.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-embed.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-formatted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-formatted.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-heading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-heading.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-image-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-image-link.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-image.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-inline-custom-tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-inline-custom-tag.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-link.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-list-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-list-item.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-list-ordered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-list-ordered.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-list-unordered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-list-unordered.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-paragraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-paragraph.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-table-cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-table-cell.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-table-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-table-header.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-table-row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-table-row.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-table.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/toolbars/config/ez-text.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/js/OnlineEditor/toolbars/ez-add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/js/OnlineEditor/toolbars/ez-add.js -------------------------------------------------------------------------------- /src/bundle/Resources/public/scss/_alloyeditor-ez.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/scss/_alloyeditor-ez.scss -------------------------------------------------------------------------------- /src/bundle/Resources/public/scss/_anchor-edit.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/scss/_anchor-edit.scss -------------------------------------------------------------------------------- /src/bundle/Resources/public/scss/_attributes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/scss/_attributes.scss -------------------------------------------------------------------------------- /src/bundle/Resources/public/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/scss/_buttons.scss -------------------------------------------------------------------------------- /src/bundle/Resources/public/scss/_character-counter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/scss/_character-counter.scss -------------------------------------------------------------------------------- /src/bundle/Resources/public/scss/_custom-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/scss/_custom-styles.scss -------------------------------------------------------------------------------- /src/bundle/Resources/public/scss/_custom-tag.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/scss/_custom-tag.scss -------------------------------------------------------------------------------- /src/bundle/Resources/public/scss/_elements-path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/scss/_elements-path.scss -------------------------------------------------------------------------------- /src/bundle/Resources/public/scss/_inputs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/scss/_inputs.scss -------------------------------------------------------------------------------- /src/bundle/Resources/public/scss/_link-edit.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/scss/_link-edit.scss -------------------------------------------------------------------------------- /src/bundle/Resources/public/scss/_tools.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/scss/_tools.scss -------------------------------------------------------------------------------- /src/bundle/Resources/public/scss/alloyeditor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/scss/alloyeditor.scss -------------------------------------------------------------------------------- /src/bundle/Resources/public/scss/functions/calculate.rem.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/scss/functions/calculate.rem.scss -------------------------------------------------------------------------------- /src/bundle/Resources/public/scss/functions/checkbox-switcher.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/scss/functions/checkbox-switcher.scss -------------------------------------------------------------------------------- /src/bundle/Resources/public/scss/variables/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/public/scss/variables/colors.scss -------------------------------------------------------------------------------- /src/bundle/Resources/public/scss/variables/vars.scss: -------------------------------------------------------------------------------- 1 | $ibexa-border-radius: calculateRem(2px); 2 | -------------------------------------------------------------------------------- /src/bundle/Resources/translations/alloy_editor.en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/translations/alloy_editor.en.xliff -------------------------------------------------------------------------------- /src/bundle/Resources/translations/custom_tags.en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/translations/custom_tags.en.xliff -------------------------------------------------------------------------------- /src/bundle/Resources/translations/fieldtypes.en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/translations/fieldtypes.en.xliff -------------------------------------------------------------------------------- /src/bundle/Resources/translations/online_editor.en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/translations/online_editor.en.xliff -------------------------------------------------------------------------------- /src/bundle/Resources/views/RichText/content_fields.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/views/RichText/content_fields.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/RichText/embed/content.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/views/RichText/embed/content.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/RichText/embed/content_denied.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/views/RichText/embed/content_denied.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/RichText/embed/content_inline.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/views/RichText/embed/content_inline.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/RichText/embed/content_inline_denied.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/views/RichText/embed/content_inline_denied.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/RichText/embed/location.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/views/RichText/embed/location.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/RichText/embed/location_denied.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/views/RichText/embed/location_denied.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/RichText/embed/location_inline.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/views/RichText/embed/location_inline.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/RichText/embed/location_inline_denied.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/views/RichText/embed/location_inline_denied.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/RichText/fielddefinition_settings.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/views/RichText/fielddefinition_settings.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/RichText/style/default.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/views/RichText/style/default.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/RichText/style/default_inline.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/views/RichText/style/default_inline.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/RichText/tag/default.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/views/RichText/tag/default.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/RichText/tag/default_inline.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/views/RichText/tag/default_inline.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/themes/standard/ezrichtext/custom_tags/ezfacebook.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/views/themes/standard/ezrichtext/custom_tags/ezfacebook.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/themes/standard/ezrichtext/custom_tags/eztwitter.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/views/themes/standard/ezrichtext/custom_tags/eztwitter.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/themes/standard/ezrichtext/custom_tags/ezyoutube.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Resources/views/themes/standard/ezrichtext/custom_tags/ezyoutube.html.twig -------------------------------------------------------------------------------- /src/bundle/Templating/Twig/Extension/RichTextConfigurationExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Templating/Twig/Extension/RichTextConfigurationExtension.php -------------------------------------------------------------------------------- /src/bundle/Templating/Twig/Extension/RichTextConverterExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Templating/Twig/Extension/RichTextConverterExtension.php -------------------------------------------------------------------------------- /src/bundle/Templating/Twig/Extension/YoutubeIdExtractorExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/Templating/Twig/Extension/YoutubeIdExtractorExtension.php -------------------------------------------------------------------------------- /src/bundle/eZ/RichText/Converter/Html5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/eZ/RichText/Converter/Html5.php -------------------------------------------------------------------------------- /src/bundle/eZ/RichText/Converter/Html5Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/eZ/RichText/Converter/Html5Edit.php -------------------------------------------------------------------------------- /src/bundle/eZ/RichText/Converter/Html5Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/eZ/RichText/Converter/Html5Input.php -------------------------------------------------------------------------------- /src/bundle/eZ/RichText/Renderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/bundle/eZ/RichText/Renderer.php -------------------------------------------------------------------------------- /src/lib/API/Configuration/ProviderService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/API/Configuration/ProviderService.php -------------------------------------------------------------------------------- /src/lib/Configuration/AggregateProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/Configuration/AggregateProvider.php -------------------------------------------------------------------------------- /src/lib/Configuration/Provider/AlloyEditor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/Configuration/Provider/AlloyEditor.php -------------------------------------------------------------------------------- /src/lib/Configuration/Provider/CustomStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/Configuration/Provider/CustomStyle.php -------------------------------------------------------------------------------- /src/lib/Configuration/Provider/CustomTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/Configuration/Provider/CustomTag.php -------------------------------------------------------------------------------- /src/lib/Configuration/UI/Mapper/CustomStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/Configuration/UI/Mapper/CustomStyle.php -------------------------------------------------------------------------------- /src/lib/Configuration/UI/Mapper/CustomTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/Configuration/UI/Mapper/CustomTag.php -------------------------------------------------------------------------------- /src/lib/Configuration/UI/Mapper/CustomTag/AttributeMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/Configuration/UI/Mapper/CustomTag/AttributeMapper.php -------------------------------------------------------------------------------- /src/lib/Configuration/UI/Mapper/CustomTag/ChoiceAttributeMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/Configuration/UI/Mapper/CustomTag/ChoiceAttributeMapper.php -------------------------------------------------------------------------------- /src/lib/Configuration/UI/Mapper/CustomTag/CommonAttributeMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/Configuration/UI/Mapper/CustomTag/CommonAttributeMapper.php -------------------------------------------------------------------------------- /src/lib/Configuration/UI/Mapper/CustomTemplateConfigMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/Configuration/UI/Mapper/CustomTemplateConfigMapper.php -------------------------------------------------------------------------------- /src/lib/Configuration/UI/Mapper/OnlineEditor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/Configuration/UI/Mapper/OnlineEditor.php -------------------------------------------------------------------------------- /src/lib/Configuration/UI/Mapper/OnlineEditorConfigMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/Configuration/UI/Mapper/OnlineEditorConfigMapper.php -------------------------------------------------------------------------------- /src/lib/Form/DataTransformer/RichTextTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/Form/DataTransformer/RichTextTransformer.php -------------------------------------------------------------------------------- /src/lib/Form/DataTransformer/RichTextValueTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/Form/DataTransformer/RichTextValueTransformer.php -------------------------------------------------------------------------------- /src/lib/Form/Mapper/RichTextFormMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/Form/Mapper/RichTextFormMapper.php -------------------------------------------------------------------------------- /src/lib/Form/Type/RichTextFieldType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/Form/Type/RichTextFieldType.php -------------------------------------------------------------------------------- /src/lib/Form/Type/RichTextType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/Form/Type/RichTextType.php -------------------------------------------------------------------------------- /src/lib/RichText/Converter/LiteralLayoutNestedList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/RichText/Converter/LiteralLayoutNestedList.php -------------------------------------------------------------------------------- /src/lib/RichText/XMLSanitizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/RichText/XMLSanitizer.php -------------------------------------------------------------------------------- /src/lib/SPI/Configuration/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/SPI/Configuration/Provider.php -------------------------------------------------------------------------------- /src/lib/Translation/Extractor/OnlineEditorCustomAttributesExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/Translation/Extractor/OnlineEditorCustomAttributesExtractor.php -------------------------------------------------------------------------------- /src/lib/Validator/Constraints/RichText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/Validator/Constraints/RichText.php -------------------------------------------------------------------------------- /src/lib/Validator/Constraints/RichTextValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/Validator/Constraints/RichTextValidator.php -------------------------------------------------------------------------------- /src/lib/eZ/FieldType/RichText/RichTextStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/FieldType/RichText/RichTextStorage.php -------------------------------------------------------------------------------- /src/lib/eZ/FieldType/RichText/RichTextStorage/Gateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/FieldType/RichText/RichTextStorage/Gateway.php -------------------------------------------------------------------------------- /src/lib/eZ/FieldType/RichText/RichTextStorage/Gateway/DoctrineStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/FieldType/RichText/RichTextStorage/Gateway/DoctrineStorage.php -------------------------------------------------------------------------------- /src/lib/eZ/FieldType/RichText/SearchField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/FieldType/RichText/SearchField.php -------------------------------------------------------------------------------- /src/lib/eZ/FieldType/RichText/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/FieldType/RichText/Type.php -------------------------------------------------------------------------------- /src/lib/eZ/FieldType/RichText/Value.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/FieldType/RichText/Value.php -------------------------------------------------------------------------------- /src/lib/eZ/Persistence/Legacy/RichTextFieldValueConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/Persistence/Legacy/RichTextFieldValueConverter.php -------------------------------------------------------------------------------- /src/lib/eZ/REST/FieldTypeProcessor/RichTextProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/REST/FieldTypeProcessor/RichTextProcessor.php -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Converter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Converter.php -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Converter/Aggregate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Converter/Aggregate.php -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Converter/Link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Converter/Link.php -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Converter/ProgramListing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Converter/ProgramListing.php -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Converter/Render.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Converter/Render.php -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Converter/Render/Embed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Converter/Render/Embed.php -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Converter/Render/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Converter/Render/Template.php -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Converter/Xslt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Converter/Xslt.php -------------------------------------------------------------------------------- /src/lib/eZ/RichText/ConverterDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/ConverterDispatcher.php -------------------------------------------------------------------------------- /src/lib/eZ/RichText/DOMDocumentFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/DOMDocumentFactory.php -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Exception/InvalidXmlException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Exception/InvalidXmlException.php -------------------------------------------------------------------------------- /src/lib/eZ/RichText/InputHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/InputHandler.php -------------------------------------------------------------------------------- /src/lib/eZ/RichText/InputHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/InputHandlerInterface.php -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Normalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Normalizer.php -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Normalizer/Aggregate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Normalizer/Aggregate.php -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Normalizer/DocumentTypeDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Normalizer/DocumentTypeDefinition.php -------------------------------------------------------------------------------- /src/lib/eZ/RichText/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/README.md -------------------------------------------------------------------------------- /src/lib/eZ/RichText/RelationProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/RelationProcessor.php -------------------------------------------------------------------------------- /src/lib/eZ/RichText/RendererInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/RendererInterface.php -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Resources/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Resources/Readme.md -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Resources/dtd/ezxhtml5_edit_html_character_entities.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Resources/dtd/ezxhtml5_edit_html_character_entities.dtd -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Resources/schemas/docbook/Readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Resources/schemas/docbook/Readme.rst -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Resources/schemas/docbook/docbook.iso.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Resources/schemas/docbook/docbook.iso.sch -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Resources/schemas/docbook/docbook.iso.sch.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Resources/schemas/docbook/docbook.iso.sch.xsl -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Resources/schemas/docbook/docbook.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Resources/schemas/docbook/docbook.rng -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Resources/schemas/docbook/docbook.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Resources/schemas/docbook/docbook.sch -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Resources/schemas/docbook/ezpublish.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Resources/schemas/docbook/ezpublish.rng -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Resources/schemas/ezxhtml5/output/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Resources/schemas/ezxhtml5/output/changes.rst -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Resources/schemas/ezxhtml5/output/ezxhtml5.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Resources/schemas/ezxhtml5/output/ezxhtml5.xsd -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Resources/schemas/ezxhtml5/output/xml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Resources/schemas/ezxhtml5/output/xml.xsd -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Resources/stylesheets/docbook/xhtml5/edit/core.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Resources/stylesheets/docbook/xhtml5/edit/core.xsl -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Resources/stylesheets/docbook/xhtml5/edit/fragment.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Resources/stylesheets/docbook/xhtml5/edit/fragment.xsl -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Resources/stylesheets/docbook/xhtml5/edit/xhtml5.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Resources/stylesheets/docbook/xhtml5/edit/xhtml5.xsl -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Resources/stylesheets/docbook/xhtml5/output/core.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Resources/stylesheets/docbook/xhtml5/output/core.xsl -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Resources/stylesheets/docbook/xhtml5/output/fragment.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Resources/stylesheets/docbook/xhtml5/output/fragment.xsl -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Resources/stylesheets/docbook/xhtml5/output/xhtml5.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Resources/stylesheets/docbook/xhtml5/output/xhtml5.xsl -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Resources/stylesheets/schematron/iso_abstract_expand.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Resources/stylesheets/schematron/iso_abstract_expand.xsl -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Resources/stylesheets/schematron/iso_dsdl_include.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Resources/stylesheets/schematron/iso_dsdl_include.xsl -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Resources/stylesheets/schematron/iso_schematron_skeleton_for_xslt1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Resources/stylesheets/schematron/iso_schematron_skeleton_for_xslt1.xsl -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Resources/stylesheets/schematron/iso_svrl_for_xslt1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Resources/stylesheets/schematron/iso_svrl_for_xslt1.xsl -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Resources/stylesheets/schematron/sch2xsl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Resources/stylesheets/schematron/sch2xsl.sh -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Resources/stylesheets/xhtml5/edit/docbook.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Resources/stylesheets/xhtml5/edit/docbook.xsl -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Resources/stylesheets/xhtml5/output/fragment.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Resources/stylesheets/xhtml5/output/fragment.xsl -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Validator/CustomTagsValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Validator/CustomTagsValidator.php -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Validator/InternalLinkValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Validator/InternalLinkValidator.php -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Validator/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Validator/Validator.php -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Validator/ValidatorAggregate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Validator/ValidatorAggregate.php -------------------------------------------------------------------------------- /src/lib/eZ/RichText/Validator/ValidatorDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/Validator/ValidatorDispatcher.php -------------------------------------------------------------------------------- /src/lib/eZ/RichText/ValidatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/ValidatorInterface.php -------------------------------------------------------------------------------- /src/lib/eZ/RichText/XmlBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/RichText/XmlBase.php -------------------------------------------------------------------------------- /src/lib/eZ/settings/fieldtype_external_storages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/settings/fieldtype_external_storages.yaml -------------------------------------------------------------------------------- /src/lib/eZ/settings/fieldtype_services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/settings/fieldtype_services.yaml -------------------------------------------------------------------------------- /src/lib/eZ/settings/fieldtypes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/settings/fieldtypes.yaml -------------------------------------------------------------------------------- /src/lib/eZ/settings/indexable_fieldtypes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/settings/indexable_fieldtypes.yaml -------------------------------------------------------------------------------- /src/lib/eZ/settings/storage_engines/legacy/external_storage_gateways.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/settings/storage_engines/legacy/external_storage_gateways.yaml -------------------------------------------------------------------------------- /src/lib/eZ/settings/storage_engines/legacy/field_value_converters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/src/lib/eZ/settings/storage_engines/legacy/field_value_converters.yaml -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/bundle/DependencyInjection/Compiler/RichTextHtml5ConverterPassTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/bundle/DependencyInjection/Compiler/RichTextHtml5ConverterPassTest.php -------------------------------------------------------------------------------- /tests/bundle/DependencyInjection/Configuration/ConfigurationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/bundle/DependencyInjection/Configuration/ConfigurationTest.php -------------------------------------------------------------------------------- /tests/bundle/DependencyInjection/Configuration/Parser/FieldType/RichTextTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/bundle/DependencyInjection/Configuration/Parser/FieldType/RichTextTest.php -------------------------------------------------------------------------------- /tests/bundle/DependencyInjection/EzPlatformRichTextExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/bundle/DependencyInjection/EzPlatformRichTextExtensionTest.php -------------------------------------------------------------------------------- /tests/bundle/DependencyInjection/Fixtures/custom_tags/input/000-attribute-type-number.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/bundle/DependencyInjection/Fixtures/custom_tags/input/000-attribute-type-number.yaml -------------------------------------------------------------------------------- /tests/bundle/DependencyInjection/Fixtures/custom_tags/input/001-attribute-type-string.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/bundle/DependencyInjection/Fixtures/custom_tags/input/001-attribute-type-string.yaml -------------------------------------------------------------------------------- /tests/bundle/DependencyInjection/Fixtures/custom_tags/input/002-attribute-type-boolean.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/bundle/DependencyInjection/Fixtures/custom_tags/input/002-attribute-type-boolean.yaml -------------------------------------------------------------------------------- /tests/bundle/DependencyInjection/Fixtures/custom_tags/input/003-attribute-type-choice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/bundle/DependencyInjection/Fixtures/custom_tags/input/003-attribute-type-choice.yaml -------------------------------------------------------------------------------- /tests/bundle/DependencyInjection/Fixtures/custom_tags/input/004-attribute-type-link.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/bundle/DependencyInjection/Fixtures/custom_tags/input/004-attribute-type-link.yaml -------------------------------------------------------------------------------- /tests/bundle/DependencyInjection/Fixtures/custom_tags/output/000-attribute-type-number.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/bundle/DependencyInjection/Fixtures/custom_tags/output/000-attribute-type-number.yaml -------------------------------------------------------------------------------- /tests/bundle/DependencyInjection/Fixtures/custom_tags/output/001-attribute-type-string.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/bundle/DependencyInjection/Fixtures/custom_tags/output/001-attribute-type-string.yaml -------------------------------------------------------------------------------- /tests/bundle/DependencyInjection/Fixtures/custom_tags/output/002-attribute-type-boolean.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/bundle/DependencyInjection/Fixtures/custom_tags/output/002-attribute-type-boolean.yaml -------------------------------------------------------------------------------- /tests/bundle/DependencyInjection/Fixtures/custom_tags/output/003-attribute-type-choice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/bundle/DependencyInjection/Fixtures/custom_tags/output/003-attribute-type-choice.yaml -------------------------------------------------------------------------------- /tests/bundle/DependencyInjection/Fixtures/custom_tags/output/004-attribute-type-link.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/bundle/DependencyInjection/Fixtures/custom_tags/output/004-attribute-type-link.yaml -------------------------------------------------------------------------------- /tests/bundle/DependencyInjection/Fixtures/ezpublish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/bundle/DependencyInjection/Fixtures/ezpublish.yaml -------------------------------------------------------------------------------- /tests/bundle/DependencyInjection/Fixtures/ezrichtext.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/bundle/DependencyInjection/Fixtures/ezrichtext.yaml -------------------------------------------------------------------------------- /tests/bundle/Templating/Twig/Extension/YoutubeIdExtractorExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/bundle/Templating/Twig/Extension/YoutubeIdExtractorExtensionTest.php -------------------------------------------------------------------------------- /tests/bundle/eZ/RichText/RendererTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/bundle/eZ/RichText/RendererTest.php -------------------------------------------------------------------------------- /tests/integration/eZ/API/RichTextFieldTypeIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/integration/eZ/API/RichTextFieldTypeIntegrationTest.php -------------------------------------------------------------------------------- /tests/integration/eZ/API/SetupFactory/LegacySetupFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/integration/eZ/API/SetupFactory/LegacySetupFactory.php -------------------------------------------------------------------------------- /tests/integration/eZ/API/SetupFactory/RichTextSetupFactoryTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/integration/eZ/API/SetupFactory/RichTextSetupFactoryTrait.php -------------------------------------------------------------------------------- /tests/integration/eZ/API/SetupFactory/SolrLegacySetupFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/integration/eZ/API/SetupFactory/SolrLegacySetupFactory.php -------------------------------------------------------------------------------- /tests/integration/eZ/API/_fixtures/ezrichtext/custom_tags/invalid/equation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/integration/eZ/API/_fixtures/ezrichtext/custom_tags/invalid/equation.xml -------------------------------------------------------------------------------- /tests/integration/eZ/API/_fixtures/ezrichtext/custom_tags/invalid/nested.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/integration/eZ/API/_fixtures/ezrichtext/custom_tags/invalid/nested.xml -------------------------------------------------------------------------------- /tests/integration/eZ/API/_fixtures/ezrichtext/custom_tags/invalid/unknown_tag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/integration/eZ/API/_fixtures/ezrichtext/custom_tags/invalid/unknown_tag.xml -------------------------------------------------------------------------------- /tests/integration/eZ/API/_fixtures/ezrichtext/custom_tags/invalid/video.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/integration/eZ/API/_fixtures/ezrichtext/custom_tags/invalid/video.xml -------------------------------------------------------------------------------- /tests/integration/eZ/API/_fixtures/ezrichtext/custom_tags/valid/equation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/integration/eZ/API/_fixtures/ezrichtext/custom_tags/valid/equation.xml -------------------------------------------------------------------------------- /tests/integration/eZ/API/_fixtures/ezrichtext/custom_tags/valid/nested.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/integration/eZ/API/_fixtures/ezrichtext/custom_tags/valid/nested.xml -------------------------------------------------------------------------------- /tests/integration/eZ/API/_fixtures/ezrichtext/custom_tags/valid/video.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/integration/eZ/API/_fixtures/ezrichtext/custom_tags/valid/video.xml -------------------------------------------------------------------------------- /tests/integration/eZ/SPI/RichTextFieldTypeIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/integration/eZ/SPI/RichTextFieldTypeIntegrationTest.php -------------------------------------------------------------------------------- /tests/lib/Configuration/AggregateProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/Configuration/AggregateProviderTest.php -------------------------------------------------------------------------------- /tests/lib/Configuration/Provider/AlloyEditorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/Configuration/Provider/AlloyEditorTest.php -------------------------------------------------------------------------------- /tests/lib/Configuration/Provider/BaseCustomTemplateProviderTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/Configuration/Provider/BaseCustomTemplateProviderTestCase.php -------------------------------------------------------------------------------- /tests/lib/Configuration/Provider/BaseProviderTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/Configuration/Provider/BaseProviderTestCase.php -------------------------------------------------------------------------------- /tests/lib/Configuration/Provider/CustomStyleProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/Configuration/Provider/CustomStyleProviderTest.php -------------------------------------------------------------------------------- /tests/lib/Configuration/Provider/CustomTagProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/Configuration/Provider/CustomTagProviderTest.php -------------------------------------------------------------------------------- /tests/lib/Configuration/UI/Mapper/CustomTagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/Configuration/UI/Mapper/CustomTagTest.php -------------------------------------------------------------------------------- /tests/lib/Configuration/UI/Mapper/OnlineEditorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/Configuration/UI/Mapper/OnlineEditorTest.php -------------------------------------------------------------------------------- /tests/lib/Form/DataTransformer/RichTextTransformerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/Form/DataTransformer/RichTextTransformerTest.php -------------------------------------------------------------------------------- /tests/lib/RichText/Converter/LiteralLayoutNestedListTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/RichText/Converter/LiteralLayoutNestedListTest.php -------------------------------------------------------------------------------- /tests/lib/Validator/Constraints/RichTextValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/Validator/Constraints/RichTextValidatorTest.php -------------------------------------------------------------------------------- /tests/lib/eZ/FieldType/RichText/Gateway/DoctrineStorageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/FieldType/RichText/Gateway/DoctrineStorageTest.php -------------------------------------------------------------------------------- /tests/lib/eZ/FieldType/RichText/Gateway/_fixtures/contentobjects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/FieldType/RichText/Gateway/_fixtures/contentobjects.php -------------------------------------------------------------------------------- /tests/lib/eZ/FieldType/RichText/RichTextStorageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/FieldType/RichText/RichTextStorageTest.php -------------------------------------------------------------------------------- /tests/lib/eZ/FieldType/RichText/SearchFieldTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/FieldType/RichText/SearchFieldTest.php -------------------------------------------------------------------------------- /tests/lib/eZ/FieldType/RichTextTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/FieldType/RichTextTest.php -------------------------------------------------------------------------------- /tests/lib/eZ/Persistence/Legacy/RichTextFieldValueConverterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/Persistence/Legacy/RichTextFieldValueConverterTest.php -------------------------------------------------------------------------------- /tests/lib/eZ/REST/FieldTypeProcessor/RichTextProcessorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/REST/FieldTypeProcessor/RichTextProcessorTest.php -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/AggregateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/AggregateTest.php -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/LinkTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/LinkTest.php -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Render/EmbedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Render/EmbedTest.php -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Render/TemplateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Render/TemplateTest.php -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Render/_fixtures/template/input/00-block.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Render/_fixtures/template/input/00-block.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Render/_fixtures/template/input/01-complex-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Render/_fixtures/template/input/01-complex-config.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Render/_fixtures/template/input/02-block-inline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Render/_fixtures/template/input/02-block-inline.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Render/_fixtures/template/input/03-inline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Render/_fixtures/template/input/03-inline.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Render/_fixtures/template/input/04-block-nested-template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Render/_fixtures/template/input/04-block-nested-template.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Render/_fixtures/template/input/05-block-content-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Render/_fixtures/template/input/05-block-content-config.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Render/_fixtures/template/input/06-custom-style-block.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Render/_fixtures/template/input/06-custom-style-block.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Render/_fixtures/template/input/07-custom-style-block-inline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Render/_fixtures/template/input/07-custom-style-block-inline.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Render/_fixtures/template/input/08-line-breaks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Render/_fixtures/template/input/08-line-breaks.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Render/_fixtures/template/output/00-block.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Render/_fixtures/template/output/00-block.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Render/_fixtures/template/output/01-complex-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Render/_fixtures/template/output/01-complex-config.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Render/_fixtures/template/output/02-block-inline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Render/_fixtures/template/output/02-block-inline.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Render/_fixtures/template/output/03-inline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Render/_fixtures/template/output/03-inline.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Render/_fixtures/template/output/04-block-nested-template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Render/_fixtures/template/output/04-block-nested-template.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Render/_fixtures/template/output/05-block-content-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Render/_fixtures/template/output/05-block-content-config.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Render/_fixtures/template/output/06-custom-style-block.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Render/_fixtures/template/output/06-custom-style-block.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Render/_fixtures/template/output/07-custom-style-block-inline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Render/_fixtures/template/output/07-custom-style-block-inline.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Render/_fixtures/template/output/08-line-breaks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Render/_fixtures/template/output/08-line-breaks.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/BaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/BaseTest.php -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/DebugRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/DebugRenderer.php -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/DocbookToXhtml5EditTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/DocbookToXhtml5EditTest.php -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/DocbookToXhtml5OutputTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/DocbookToXhtml5OutputTest.php -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/Xhtml5ToDocbookTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/Xhtml5ToDocbookTest.php -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/001-title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/001-title.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/002-para.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/002-para.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/003-section.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/003-section.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/004-sectionNested.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/004-sectionNested.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/005-emphasis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/005-emphasis.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/006-emphasisStrong.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/006-emphasisStrong.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/007-emphasisUnderlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/007-emphasisUnderlined.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/008-orderedList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/008-orderedList.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/009-itemizedList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/009-itemizedList.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/010-htmlInformaltable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/010-htmlInformaltable.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/011-htmlTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/011-htmlTable.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/012-literallayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/012-literallayout.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/013-anchor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/013-anchor.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/014-link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/014-link.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/015-subscript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/015-subscript.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/016-superscript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/016-superscript.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/017-customYoutube.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/017-customYoutube.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/018-htmlTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/018-htmlTable.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/019-emphasisStrikedthrough.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/019-emphasisStrikedthrough.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/020-blockquote.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/020-blockquote.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/021-titleImplicitLevels.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/021-titleImplicitLevels.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/022-embed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/022-embed.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/023-embedInline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/023-embedInline.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/024-template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/024-template.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/025-templateInline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/025-templateInline.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/026-tableTitles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/026-tableTitles.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/027-linkedEmbed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/027-linkedEmbed.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/028-linkedEmbedInline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/028-linkedEmbedInline.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/029-htmlEntities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/029-htmlEntities.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/030-emphasisStrikedthroughDeleted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/030-emphasisStrikedthroughDeleted.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/031-ezstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/031-ezstyle.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/032-ezstyleinline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/032-ezstyleinline.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/033-programlisting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/033-programlisting.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/034-nestedTemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/034-nestedTemplate.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/035-itemizedListWithNestedElements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/035-itemizedListWithNestedElements.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/036-orderedListWithLinefeeds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/036-orderedListWithLinefeeds.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/037-itemizedListWithLinefeeds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/037-itemizedListWithLinefeeds.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/custom_schemas/youtube.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/custom_schemas/youtube.rng -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/custom_stylesheets/youtube_ezxml.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/custom_stylesheets/youtube_ezxml.xsl -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/custom_stylesheets/youtube_xhtml5_edit.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/custom_stylesheets/youtube_xhtml5_edit.xsl -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/custom_stylesheets/youtube_xhtml5_output.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/custom_stylesheets/youtube_xhtml5_output.xsl -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/lossy/001-embedPayload.docbook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/lossy/001-embedPayload.docbook.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/lossy/001-embedPayload.xhtml5.output.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/lossy/001-embedPayload.xhtml5.output.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/lossy/002-embedInlinePayload.docbook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/lossy/002-embedInlinePayload.docbook.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/lossy/002-embedInlinePayload.xhtml5.output.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/docbook/lossy/002-embedInlinePayload.xhtml5.output.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/001-title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/001-title.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/002-para.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/002-para.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/003-section.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/003-section.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/004-sectionNested.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/004-sectionNested.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/005-emphasis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/005-emphasis.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/006-emphasisStrong.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/006-emphasisStrong.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/007-emphasisUnderlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/007-emphasisUnderlined.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/008-orderedList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/008-orderedList.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/009-itemizedList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/009-itemizedList.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/010-htmlInformaltable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/010-htmlInformaltable.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/011-htmlTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/011-htmlTable.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/012-literallayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/012-literallayout.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/013-anchor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/013-anchor.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/014-link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/014-link.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/015-subscript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/015-subscript.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/016-superscript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/016-superscript.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/017-customYoutube.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/017-customYoutube.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/018-htmlTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/018-htmlTable.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/019-emphasisStrikedthrough.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/019-emphasisStrikedthrough.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/020-blockquote.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/020-blockquote.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/021-titleImplicitLevels.lossy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/021-titleImplicitLevels.lossy.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/022-embed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/022-embed.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/023-embedInline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/023-embedInline.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/024-template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/024-template.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/025-templateInline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/025-templateInline.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/026-tableTitles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/026-tableTitles.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/027-linkedEmbed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/027-linkedEmbed.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/028-linkedEmbedInline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/028-linkedEmbedInline.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/029-htmlEntities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/029-htmlEntities.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/030-emphasisStrikedthroughDeleted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/030-emphasisStrikedthroughDeleted.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/031-ezstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/031-ezstyle.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/032-ezstyleinline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/032-ezstyleinline.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/033-programlisting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/033-programlisting.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/034-nestedTemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/034-nestedTemplate.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/035-itemizedListWithNestedElements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/035-itemizedListWithNestedElements.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/036-orderedListWithLinefeeds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/036-orderedListWithLinefeeds.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/037-itemizedListWithLinefeeds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/037-itemizedListWithLinefeeds.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/custom_stylesheets/youtube_docbook.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/custom_stylesheets/youtube_docbook.xsl -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/001-embedContent.docbook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/001-embedContent.docbook.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/001-embedContent.xhtml5.edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/001-embedContent.xhtml5.edit.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/002-embedInlineContent.docbook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/002-embedInlineContent.docbook.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/002-embedInlineContent.xhtml5.edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/002-embedInlineContent.xhtml5.edit.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/003-inlinestyles.docbook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/003-inlinestyles.docbook.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/003-inlinestyles.xhtml5.edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/003-inlinestyles.xhtml5.edit.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/004-itemizedList.docbook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/004-itemizedList.docbook.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/004-itemizedList.xhtml5.edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/004-itemizedList.xhtml5.edit.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/005-orderedList.docbook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/005-orderedList.docbook.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/005-orderedList.xhtml5.edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/005-orderedList.xhtml5.edit.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/006-paragraph.docbook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/006-paragraph.docbook.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/006-paragraph.xhtml5.edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/006-paragraph.xhtml5.edit.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/007-table.docbook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/007-table.docbook.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/007-table.xhtml5.edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/007-table.xhtml5.edit.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/008-anchor.docbook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/008-anchor.docbook.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/008-anchor.xhtml5.edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/008-anchor.xhtml5.edit.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/009-ezxhtmlTextalignInvalid.docbook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/009-ezxhtmlTextalignInvalid.docbook.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/009-ezxhtmlTextalignInvalid.xhtml5.edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/009-ezxhtmlTextalignInvalid.xhtml5.edit.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/010-duplicatedIds.docbook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/010-duplicatedIds.docbook.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/010-duplicatedIds.xhtml5.edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/edit/lossy/010-duplicatedIds.xhtml5.edit.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/001-title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/001-title.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/002-para.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/002-para.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/003-section.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/003-section.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/004-sectionNested.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/004-sectionNested.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/005-emphasis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/005-emphasis.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/006-emphasisStrong.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/006-emphasisStrong.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/007-emphasisUnderlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/007-emphasisUnderlined.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/008-orderedList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/008-orderedList.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/009-itemizedList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/009-itemizedList.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/010-htmlInformaltable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/010-htmlInformaltable.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/011-htmlTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/011-htmlTable.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/012-literallayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/012-literallayout.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/013-anchor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/013-anchor.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/014-link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/014-link.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/015-subscript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/015-subscript.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/016-superscript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/016-superscript.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/017-customYoutube.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/017-customYoutube.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/018-htmlTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/018-htmlTable.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/019-emphasisStrikedthrough.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/019-emphasisStrikedthrough.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/020-blockquote.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/020-blockquote.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/021-titleImplicitLevels.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/021-titleImplicitLevels.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/022-embed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/022-embed.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/023-embedInline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/023-embedInline.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/024-template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/024-template.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/025-templateInline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/025-templateInline.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/026-tableTitles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/026-tableTitles.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/027-linkedEmbed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/027-linkedEmbed.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/028-linkedEmbedInline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/028-linkedEmbedInline.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/029-htmlEntities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/029-htmlEntities.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/030-emphasisStrikedthroughDeleted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/030-emphasisStrikedthroughDeleted.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/031-ezstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/031-ezstyle.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/032-ezstyleinline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/032-ezstyleinline.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/033-programlisting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/033-programlisting.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/034-nestedTemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/034-nestedTemplate.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/035-itemizedListWithNestedElements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/035-itemizedListWithNestedElements.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/036-orderedListWithLinefeeds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/036-orderedListWithLinefeeds.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/037-itemizedListWithLinefeeds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/037-itemizedListWithLinefeeds.xml -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/custom_schemas/custom.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Converter/Xslt/_fixtures/xhtml5/output/custom_schemas/custom.xsd -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/DOMDocumentFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/DOMDocumentFactoryTest.php -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/InputHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/InputHandlerTest.php -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Normalizer/DocumentTypeDefinitionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Normalizer/DocumentTypeDefinitionTest.php -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Normalizer/_fixtures/pound.dtd: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Normalizer/_fixtures/weird_drink.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Normalizer/_fixtures/weird_drink.dtd -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/RelationProcessorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/RelationProcessorTest.php -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Validator/CustomTagsValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Validator/CustomTagsValidatorTest.php -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Validator/DocbookTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Validator/DocbookTest.php -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Validator/InternalLinkValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Validator/InternalLinkValidatorTest.php -------------------------------------------------------------------------------- /tests/lib/eZ/RichText/Validator/ValidatorAggregateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/RichText/Validator/ValidatorAggregateTest.php -------------------------------------------------------------------------------- /tests/lib/eZ/settings/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-richtext/HEAD/tests/lib/eZ/settings/common.yaml --------------------------------------------------------------------------------