Hi,
we noticed we are using the d6 2.x-dev version of this module, working well, but it looks like its no longer on drupal.org, so im getting a no longer supported on this module.
I diffed the recommended version, and this dev version and there are a few fixes in there which are needed where the 2.x-dev version is in /home/admin/public_html/sites/all/modules/better_formats
and the recommended version is 1.2! so not sure how useful the diff is!,

diff better_formats /home/admin/public_html/sites/all/modules/better_formats
diff better_formats/README.txt /home/admin/public_html/sites/all/modules/better_formats/README.txt
29c29,30
< 1. Go to user permissions (/admin/user/permissions) and set your permissions.
---
> 1. Go to user permissions (/admin/user/permissions) and set your permissions for
> what and how to show the format selection and tips.
62a64,69
> * To adjust how the format selection is shown to the user, edit the permissions
> at /admin/user/permissions.
>
> * To control whether or not the format help tips and help link are shown, edit
> the permissions at /admin/user/permissions.
>
diff better_formats/better-formats-defaults-admin-form.tpl.php /home/admin/public_html/sites/all/modules/better_formats/better-formats-defaults-admin-form.tpl.php
2d1
< // $Id: better-formats-defaults-admin-form.tpl.php,v 1.3.2.7 2009/09/27 14:27:13 dragonwize Exp $
diff better_formats/better_formats.info /home/admin/public_html/sites/all/modules/better_formats/better_formats.info
1d0
< ; $Id: better_formats.info,v 1.1.2.2 2009/02/25 06:44:17 dragonwize Exp $
6,7c5,6
< ; Information added by drupal.org packaging script on 2010-02-05
< version = "6.x-1.2"
---
> ; Information added by drupal.org packaging script on 2011-09-16
> version = "6.x-2.x-dev"
10c9
< datestamp = "1265402405"
---
> datestamp = "1316131530"
diff better_formats/better_formats.install /home/admin/public_html/sites/all/modules/better_formats/better_formats.install
2d1
< // $Id: better_formats.install,v 1.7.2.7 2009/05/31 06:24:40 dragonwize Exp $
diff better_formats/better_formats.module /home/admin/public_html/sites/all/modules/better_formats/better_formats.module
2d1
< // $Id: better_formats.module,v 1.23.2.17 2010/02/05 13:59:18 dragonwize Exp $
312,313c311,313
< // Overwrite format default if new node.
< if (!isset($form_state['values']['nid']) || empty($format)) {
---
> // Overwrite format default if new node unless the field has a default text
> // or is being previewed.
> if ((!isset($form_state['values']['nid']) && !isset($element['#default_value']['value'])) || empty($format)) {
468c468
< WHERE rid IN (%s) AND type IN ('$types')
---
> WHERE rid IN ($roles) AND type IN ('$types')
470c470
< $row = db_fetch_object(db_query_range($sql, $roles, 0, 1));
---
> $row = db_fetch_object(db_query_range($sql, 0, 1));
531,532c531,532
< if (module_exists('i18n_strings') && $fieldset_title) {
< $fieldset_title = tt($fieldset_title);
---
> if (module_exists('i18nstrings') && $fieldset_title) {
> $fieldset_title = i18nstrings($fieldset_title);
540c540
< '#title' => $fieldset_title,
---
> '#title' => check_plain($fieldset_title),
554c554
< '#title' => $format->name,
---
> '#title' => check_plain($format->name),
631,632c631,632
< if (module_exists('i18n_strings') && $text) {
< $text = tt($text);
---
> if (module_exists('i18nstrings') && $text) {
> $text = i18nstrings($text);
diff better_formats/better_formats_defaults.admin.inc /home/admin/public_html/sites/all/modules/better_formats/better_formats_defaults.admin.inc
2d1
< // $Id: better_formats_defaults.admin.inc,v 1.3.2.11 2010/02/05 13:52:48 dragonwize Exp $
diff better_formats/better_formats_node_type_form.js /home/admin/public_html/sites/all/modules/better_formats/better_formats_node_type_form.js
1d0
< // $Id: better_formats_node_type_form.js,v 1.4.2.3 2009/05/31 17:53:41 dragonwize Exp $
diff better_formats/better_formats_settings.admin.inc /home/admin/public_html/sites/all/modules/better_formats/better_formats_settings.admin.inc
2d1
< // $Id: better_formats_settings.admin.inc,v 1.6.2.3 2009/02/25 06:44:17 dragonwize Exp $
Common subdirectories: better_formats/tests and /home/admin/public_html/sites/all/modules/better_formats/tests
Only in better_formats: translations

Comments

dragonwize’s picture

Category: bug » support
Status: Active » Fixed

With D8 around the corner and little personal use of D6 with the need to focus more on D7 for now, I have no time to fulfill the goals of what the 2.x branch was meant to be.

That said, while it is unsupported, the code is still available via drupal.org as all code is.

If someone wants to continue with the efforts started in 2.x or backport changes to the 1.x branch appropriately, patches are welcome.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.