Skip to content
  1. Jul 26, 2005
  2. Jun 01, 2005
  3. May 17, 2005
  4. Apr 12, 2005
  5. Apr 01, 2005
  6. Mar 27, 2005
  7. Mar 23, 2005
  8. Mar 21, 2005
    • Dries Buytaert's avatar
      · f8d634e3
      Dries Buytaert authored
      - Patch #18093 by Junyor: clean up handling of image toolkit code in absence of
        any toolkits.
      f8d634e3
  9. Mar 18, 2005
  10. Mar 16, 2005
    • Dries Buytaert's avatar
      · 97ae6568
      Dries Buytaert authored
      - Patch #13738 by TDobes: theme system fixes:
      
      * Fix a bug which would cause the "configure" link for styles to be broken.
      * Fix a bug with using drupal_get_filename for theme engines. Although this is not called anywhere in core, we should still fix it for contrib. (i.e. themes that may want to manually invoke a theme engine to create a hybrid theme)
      * Correct an inaccurate comment in theme.inc
      * Populate the default primary links with an "edit primary links" link for consistency with the secondary links
      * remove some unnecessary variables in the theme administration which had misleading and confusing names
      * replace time-consuming foreach when rendering theme admin page with a more efficient array_key_exists
      * usability: rather than completely removing the search box checkbox when search.module is disabled, simply disable it. (UI elements shouldn't appear/disappear.)
      97ae6568
  11. Mar 08, 2005
  12. Mar 05, 2005
  13. Feb 12, 2005
    • Dries Buytaert's avatar
      - Patch #17208 by asimmonds: help text fixes: · 5b7ecb86
      Dries Buytaert authored
          - permissions menu link updates in a number of modules help
          - anchor link fix in distributed auth help
          - "my account" link fix in user help
          - spelling correction in tracker.module help
      
      - I also changed 'admin/access/perms' to 'admin/access/permissions'.
      5b7ecb86
  14. Feb 08, 2005
  15. Feb 01, 2005
    • Dries Buytaert's avatar
      - Patch #16358 by James: added toolkit to enable better image handling. The... · 7ccc5a6b
      Dries Buytaert authored
      - Patch #16358 by James: added toolkit to enable better image handling.  The avatar code and the upload module have been updated to take advantage of the new image API.
      
      There are 5 main functions that modules may now utilize to handle images:
      
      * image_get_info() - this function checks a file.  If it exists and is a valid image file, it will return an array containing things like the pixel dimensions of the image, plus the 'type' and common extension.
      * image_scale - resizes a given image to fit within a given width / height dimensions, while maintaining aspect ratio (not distorting the image).  This function can be used to generate thumbnails, or ensure a maximum resolution, etc.
      * image_resize - similar to image_scale (but will not respect aspect ratio - may well distort the image).
      * image_rotate - rotate an image by X degrees
      * image_crop - crops an image to a given rectangle (defined as top-left x/y coordinates plus a width & height of the rectangle).
      
      Contribution modules will now be able to rely on these base manipulation functions to offer additional functionality (such as image nodes, photo galleries, advanced image manipulation, etc).
      7ccc5a6b
  16. Jan 24, 2005
  17. Jan 14, 2005
  18. Dec 11, 2004
    • Dries Buytaert's avatar
      · 6e3eb60a
      Dries Buytaert authored
      - Removed some cruft: left-over xxx_help_page() functions.
      6e3eb60a
  19. Nov 30, 2004
  20. Nov 25, 2004
    • Dries Buytaert's avatar
      · 0c6a18cb
      Dries Buytaert authored
      - Patch #5942 by TDobes: fixed theme stuff after multi-site configuration patch.
      0c6a18cb
  21. Nov 24, 2004
  22. Nov 15, 2004
    • Dries Buytaert's avatar
      · f37a65ca
      Dries Buytaert authored
      - Patch #12353 by Stefan: usability improvement: don't show 'throttle fields' unless the throttle module is enabled.
      f37a65ca
    • Dries Buytaert's avatar
      · 9979acea
      Dries Buytaert authored
      - Patch #12783 by Stefan: various small consistency/usability improvements.
      9979acea
  23. Nov 14, 2004
    • Dries Buytaert's avatar
      - Modified patch by Jeremy: throttle module improvements and fixes: · ef95773b
      Dries Buytaert authored
         + throttle module: flush cache when the throttle enables/disables
         + throttle module: prevent throttle being enabled by 0 users or guests when disabled
         + system module: remove requirement for statistics.module
         + block module: update help text to reflect access log is no longer required
         + statistics module: throttle is now enabled/disabled, not using levels 0-5
      ef95773b
  24. Nov 02, 2004
  25. Oct 16, 2004
    • Dries Buytaert's avatar
      · 2c45ab85
      Dries Buytaert authored
      - Fixed bug #9948: added some checks to system_setting_save() to avoid PHP warnings/errors.
      2c45ab85
  26. Oct 14, 2004
  27. Oct 12, 2004
  28. Oct 04, 2004
    • Dries Buytaert's avatar
      · 503c7845
      Dries Buytaert authored
      - Simplified/reorganized version of patch #9620 by Jeremy: fixed errors when writing to cache.
      503c7845
  29. Sep 22, 2004
  30. Sep 21, 2004
    • Dries Buytaert's avatar
      · 1a91e6e1
      Dries Buytaert authored
      - Patch #10730 by Adrian: made it possible to upload a logo.
      1a91e6e1
  31. Sep 19, 2004
  32. Sep 16, 2004
    • Dries Buytaert's avatar
      · 5c7983c4
      Dries Buytaert authored
      - Patch #8179 by JonBob: reintroduced menu caching.
      5c7983c4
  33. Sep 12, 2004
  34. Sep 11, 2004
  35. Sep 06, 2004
  36. Aug 24, 2004
    • Steven Wittens's avatar
      Patch by me and Kjartan. · 44f341be
      Steven Wittens authored
      Upload.module
      - Fixing a bug caused by the PHP5 patches.
      Beware: PHP4's array_merge() will silently accept objects and convert them to arrays. We should not depend on this behaviour in the future.
      
      File.inc / file-using modules:
      - Removing the constant FILE_SEPARATOR: forward slashes work fine on Windows, and it was being used incorrectly as an URL separator sometimes.
      - Adding @ to mkdir and chmod to supress ugly PHP errors. They are already reported with drupal_set_message().
      - Fixing default for variable 'file_directory_temp'.
      - Clarifying the help tip for 'file_directory_temp' in admin > settings.
      44f341be