Require To Publish Sandbox

Component type

module

Maintenance status

Development status

Component created

Component changed

A Drupal module which allows required fields to remain empty as long as the node is unpublished. Also, it creates a "Save as Draft" button.

There is a D6 module which does this already: https://drupal.org/project/required_for_pub

Try to make compatible with Workbench, which handles status per revision rather than per node. Allow Workbench to set "require" level to an arbitrary state? (For instance, not required for "Draft" but required for "Needs Review" or "Published"?)

Unicode 4-Byte Char Filter

Component type

module

Categories

Maintenance status

Development status

Component created

Component changed

Looking at this:
https://www.drupal.org/node/1824506#comment-6881382

MySQL (versions older 5.5.3 or not using utf8mb4) is unable to save unicode characters of 4 bytes. So having any of these characters in your long text fields will cause a MySQL error and break things.

This is to convert all characters of 4 bytes into HTML entities. Recommended to add this filter to the bottom of the stack in your text format.

List Single Field

Component type

module

Categories

Maintenance status

Development status

Component created

Component changed

Drupal creates new table for every single field creation. In greenfield projects, where select drop down is required at many places. It leads to issue to many tables in database with little data.
This module works on single field base and multiple field instance concept thus leads to less table creation.