Skip to main content

plonetrick.csrfworkarounds

Project description

Links:

How it works

This package contains workarounds for legacy code that contains bugs that appear evident after applying the plone4.csrffixes patch.

Usage

Add plonetrick.csrfworkarounds to the list of eggs in your buildout, run buildout and restart Plone.

Disable plone CSRF check in page templates

One of the canonical way to disable the CSRF protection is using this code snippet:

alsoProvides(
    self.request,
    IDisableCSRFProtection,
)

This solution is better than the workaround provided by this package. The workaround consist in customizing the template adding a call to here/disable_csrf_protection/disable, e.g.:

<metal:slot fill-slot="top_slot" tal:define="dummy here/@@disable_csrf_protection/disable" />

Disable plone CSRF transform when getting TinyMCE configuration

See:

There is no easy fix with this, so I added the workaround view tinymce-jsonconfiguration-csrf-free that wraps the original one adding the requested header.

Example usage:

jQuery.ajax({
  url: portal_url + '/@@tinymce-jsonconfiguration-csrf-free?field=' + encodeURI(element.attr('name')),
  success: function(data) {
    element.attr({'data-mce-config': data});
    element.addClass('mce_editable');
    element.addClass('pat-tinymce');
    window.initTinyMCE(element.parent(), {});
  }
});
orphan:

Changelog

0.9.0 (2015-11-25)

  • Initial release. [ale-rt]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

plonetrick.csrfworkarounds-0.9.0.tar.gz (9.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page