Skip to content
  1. Oct 18, 2006
  2. Aug 02, 2006
  3. Jun 02, 2006
  4. May 24, 2006
  5. Mar 13, 2006
  6. Dec 12, 2005
  7. Nov 30, 2005
  8. Nov 29, 2005
  9. Aug 15, 2005
  10. Jun 29, 2005
  11. Jun 01, 2005
  12. Apr 15, 2005
  13. Mar 31, 2005
  14. Mar 07, 2005
  15. Mar 05, 2005
  16. Feb 27, 2005
  17. Feb 02, 2005
  18. 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
    • Dries Buytaert's avatar
      · 7931c778
      Dries Buytaert authored
      - Patch #16513 by James (slightly modified): export categories and enclosures to RSS feeds (and made RSS feeds extensible).
      
        NOTE: this needs to be documented.
      7931c778
  19. Jan 29, 2005
  20. Jan 28, 2005
  21. Jan 27, 2005
  22. Jan 25, 2005
  23. Jan 19, 2005
    • Dries Buytaert's avatar
      · 7bdca92a
      Dries Buytaert authored
      - Patch #6847 by Gerhard: replaced vocabulary->nodes by a separate table and tidied up the taxonomy API a bit.  This fixes a number of issues.
      7bdca92a
  24. Jan 15, 2005
  25. Jan 14, 2005
  26. Dec 30, 2004
    • Dries Buytaert's avatar
      · 828be2ad
      Dries Buytaert authored
      - Patch #13020 by chx: let Drupal handle multiple database layers.
      
      - Removed the PEAR database backend.  It's no longer being used/maintained.
      828be2ad
  27. Dec 27, 2004
    • Dries Buytaert's avatar
      · f763bb73
      Dries Buytaert authored
      - Made the ping module ping pingomatic.com, which in turn, will ping all the major ping services.
        Less code to ping more services.
      f763bb73
  28. Dec 15, 2004
    • Dries Buytaert's avatar
      - Patch #13907 by Neil: less ways to set the page title. · 2b17b3a9
      Dries Buytaert authored
         * Less logic in theme code.
         * Encourages use of the menu system.
         * Easier to find where a title or breadcrumb comes from in other people's code because there are less places to look. Look in menu and then grep for the appropriate set function. Looking for calls to theme_page() is hard because there are too many of them.
         * Very slightly more efficient.
      2b17b3a9
  29. Dec 07, 2004
    • Dries Buytaert's avatar
      · 33baf53c
      Dries Buytaert authored
      - Added a simple contact module to core.
      33baf53c
  30. Dec 05, 2004
  31. Nov 28, 2004
    • Dries Buytaert's avatar
      - Refactored the statistics and watchdog module (views). The most important · 70fcf51e
      Dries Buytaert authored
        changes are:
      
        1. Simplified the statistics pages: there are less pages and on the
           remaining pages there is a lot less visual clutter (less columns and
           better presentation).
      
        2. Reorganized the 'administer - logs' menu: flattened the menu structure
           and removed a number of links.
      
        3. Improved performance.  Most statistics pages used about 160 slow SQL
           queries which made the statistics pages fairly unusable on my system.
           The new pages use at least 10 times less SQL queries and render much
           faster.  They are actually usable.
      
        4. There is now a 'track'-tab on node pages, and a second subtrab on the
           user accounts 'track'-tab for people with the 'access statistics'
           permission.  They can be used to resp. track the node and the user.
           This makes the statistics more accessible.
      
        5. Changed the way watchdog messages are filtered.  This makes it easier
           to introduce new watchdog types.
      
        6. Reworked the statistics module's permissions.
      
        7. Less code: 223 insertions(+), 343 deletions(-).
      
        8. Fixed several glitches: for example, the statistics pages sorted the
           'Name' column by user ID instead of by name.  Unfortunately, it is
           too difficult to backport these to DRUPAL-4-5.
      
        TODO:
      
        1. Review the statistics modules help pages.
      
        2. Help fine-tune the interfaces/views.
      
        NOTES:
      
        1. You'll want to run update.php.
      70fcf51e
  32. Nov 24, 2004
  33. Nov 18, 2004
  34. Nov 15, 2004
    • Dries Buytaert's avatar
      · 9bf33e5a
      Dries Buytaert authored
      - Added generic flood control mechanism to throttle certain operations per hostname (eg. posting comments, requesting passwords, sending e-mails).  See flood_register_event() and flood_is_allowed() for details.
      9bf33e5a
  35. Nov 07, 2004
    • Dries Buytaert's avatar
      - Refactored the throttle module. Patch by Jeremy and me. · 3769665b
      Dries Buytaert authored
        * There are only two throttle levels instead of 5, namely 'enabled' and 'disabled'.  This makes it a _lot_ easier to predict when the throttle will kick in.  However, if you maintain a module that is throttle-aware, it needs to be updated!
      
        * The throttle mechanism now uses the current number of anonymous users or the current number of authenticated users to kick in.  This is a _lot_ more intuitive than the old throttle mechanism.
      
        * The throttle block has been removed -- you can now use the "Who's online" block to determine the good throttle settings.
      
        * Most of the documentation has been removed because it was deprecated.
      
        * It's less code!
      3769665b
  36. Nov 06, 2004
  37. Oct 31, 2004