README.patches.txt 1.2 KB

1234567891011121314151617181920
  1. This README lists all patches that were used in developement of tripal_views_integration.
  2. ------------------------------------------------------
  3. These are the patches needed to ahah_helper module:
  4. Submit issue reported and solved here:
  5. http://drupal.org/node/1231140
  6. The original patch location:
  7. http://drupal.org/files/issues/1231140.ahah_helper.form-submit-handler.patch
  8. The patch file alexgl used:
  9. patches/1231140.ahah_helper.form-submit-handler.patch
  10. Usage:
  11. 1. Find the global or local path to this module and substitue in the command below for*path_to_tripal_views_integration*
  12. 2. Navigate to the folder of contrib module ahah_helper and run:
  13. ahah_helper$ patch -p1 < *path_to_tripal_views_integration*/patches/1231140.ahah_helper.form-submit-handler.patch
  14. (alternatively you can just copy the patch file to the ahah_helper folder and run the command without *path_to_tripal_views_integration*)
  15. NOTE: we have to use patch -p1 command, since this is a git patch, and the ahah_helper folder most likely will not be
  16. git inintialized. -p0 will not work. If folder is not git initialized then 'git apply -v *patchname*' will do nothing.
  17. -----------------------------------------------------