My favorites | Sign in
Project Home Downloads Wiki Issues Source
Search
for
changelog  

#Drupala Installation Profile - Changelog

Introduction

This is a list of all code changes made to core modules or third party modules that are key to the functionality of the site and should be maintained on upgrade.

Note: some of the changes are optional or have been reverted.

Details

^1. jquery + site requires custom jquery.js replacement file + also addition of collapse-fix.js & compat.js files in misc + http://www.drigg-code.org/pages/download_and_install ---> see folder "drigg_javascript

2. user module + patched – 3 lines + http://drupal.org/node/314669 ---> reverted after last update with no negative effects (6/23/09)?

^3. settings.php + several mods / string changes + http://drupal.org/node/206904

^4. common.inc + patch to allow string changes + http://drupal.org/node/131061#comment-636000

5. abuse.module + patch to fix error on deleting comments + http://drupal.org/node/255972

Admin said… (30 Oct 08, looking at version 1) Indicator

6. I commented out the code in the link module to prevent token variable choices from being displayed to the user in the profile section

+ reference: http://drupal.org/node/196198

Admin said… (04 Nov 08, looking at version 1) Indicator

7. Chrome browser scroll area bug solved by editing /sites/all/modules/fckeditor/fckeditor/editor/fckeditor.html

---> xEditingArea to "height: 390px"

8. patched drigg module to add rows:

  $form['body'] = array(
    '#type' => 'textarea',
    '#title' => t('Story\'s description'), 
    '#default_value' => $node->body,
    '#rows' => 20,
    '#weight' => -6, 
    '#required' => FALSE ); 

^9. patched taxonomy to mod field weight http://drupal.org/node/119408 ---> reverted at upgrade to 5.19 (user optional)

Admin said… (08 Nov 08, looking at version 1) Indicator

10. modified forward module to change “email” string to “share”

$title = t(‘Share this !type’, array(’!type’ => $forward_link_type));

Admin said… (08 Nov 08, looking at version 1) Indicator

11. modified service links module to translate string:

    function theme_service_links_node_format($links) { return ‘
    ’. t(‘Share this post on: ‘) .’
    ’. theme(‘links’, $links) .’
    ’;
    }

12. patch views http://drupal.org/node/142347

^13. disable autocomplete - form.inc line 1402 http://drupal.org/node/136998#comment-1052317 ---> reverted at upgrade to 5.19 (user optional)

/*  if ($element['#autocomplete_path']) {
    drupal_add_js('misc/autocomplete.js');
    $class[] = 'form-autocomplete';
    $extra =  '<input class="autocomplete" type="hidden" id="'. $element['#id'] .'-autocomplete" value="'. check_url(url($element['#autocomplete_path'], NULL, NULL, TRUE)) .'" disabled="disabled" />';
  } */ 

^14. Edited Search module to fix number of settings returned at 15 ---> reverted at upgrade to 5.19 (user optional)

15. Edited Activity Stream module to set number of settings returned at 100

Note: changes marked with a (^) must be preserved on each Drupal version upgrade!!!


Sign in to add a comment
Powered by Google Project Hosting