Skip to content

Instantly share code, notes, and snippets.

@tkimnguyen
Created May 8, 2016 22:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tkimnguyen/3125e889d6c04a399a51a18c17c65a81 to your computer and use it in GitHub Desktop.
Save tkimnguyen/3125e889d6c04a399a51a18c17c65a81 to your computer and use it in GitHub Desktop.
Enable HTML code editing in Mosaic tiles
<?xml version="1.0"?>
<registry>
<records interface="plone.app.mosaic.interfaces.IFormat"
prefix="plone.app.mosaic.richtext_toolbar.code">
<value key="name">toolbar-code</value>
<value key="category">actions</value>
<value key="label">Edit Code</value>
<value key="action">code</value>
<value key="icon">false</value>
<value key="favorite">false</value>
<value key="weight">1000</value>
</records>
<record field="actions" interface="plone.app.mosaic.interfaces.IWidgetAction"
name="plone.app.mosaic.widget_actions.plone_app_z3cform_wysiwyg_widget_WysiwygWidget.actions">
<value purge="False">
<element>toolbar-code</element>
</value>
</record>
<record field="actions" interface="plone.app.mosaic.interfaces.IWidgetAction"
name="plone.app.mosaic.widget_actions.plone_app_z3cform_wysiwyg_widget_WysiwygFieldWidget.actions">
<value purge="False">
<element>toolbar-code</element>
</value>
</record>
<record field="actions" interface="plone.app.mosaic.interfaces.IWidgetAction"
name="plone.app.mosaic.widget_actions.plone_app_widgets_dx_RichTextWidget.actions">
<value purge="False">
<element>toolbar-code</element>
</value>
</record>
<record field="actions" interface="plone.app.mosaic.interfaces.IWidgetAction"
name="plone.app.mosaic.widget_actions.plone_app_z3cform_widget_RichTextFieldWidget.actions">
<value purge="False">
<element>toolbar-code</element>
</value>
</record>
<record name="plone.app.mosaic.structure_tiles.text.available_actions">
<value purge="False">
<element>toolbar-code</element>
</value>
</record>
<record name="plone.app.mosaic.app_tiles.plone_app_standardtiles_rawhtml.available_actions">
<value purge="False">
<element>toolbar-code</element>
</value>
</record>
</registry>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment