Skip to content
  1. Feb 25, 2011
  2. Oct 18, 2006
  3. Aug 08, 2006
  4. Mar 17, 2006
  5. Mar 06, 2006
  6. Feb 21, 2006
  7. Feb 01, 2006
  8. Jan 17, 2006
  9. Jan 05, 2006
  10. Nov 01, 2005
  11. Oct 13, 2005
  12. Oct 11, 2005
  13. Oct 07, 2005
  14. Sep 08, 2005
  15. Aug 25, 2005
  16. May 05, 2005
  17. May 03, 2005
  18. Apr 24, 2005
    • Dries Buytaert's avatar
      · a76a1e1f
      Dries Buytaert authored
      - Patch 20910 by chx: centralize print theme page.
      a76a1e1f
  19. Mar 31, 2005
  20. Mar 03, 2005
  21. Jan 09, 2005
    • Dries Buytaert's avatar
      - Patch #13260 by UnConeD: watchdog module improvements. · 64b100d1
      Dries Buytaert authored
        We added a 'severity' column to watchdog():
          watchdog($type, $message, $link) --> watchdog($type, $message, $severity, $link);
      
          * Specify a severity in case you are reporting a warning or error.
          * The $link-parameter is now the fourth parameter instead of the third.
      
        TODO: document this in the upgrade guide.
      64b100d1
  22. Nov 27, 2004
    • Dries Buytaert's avatar
      · b8a556b8
      Dries Buytaert authored
      - Bug 13503: updating the locale settings might impact the interface (eg. menu's) so we have to flush the cache.
      b8a556b8
  23. Nov 21, 2004
    • Dries Buytaert's avatar
      · fa978390
      Dries Buytaert authored
      - Patch 13180 by chx: renamed check_query() to db_escape_string() and implemtented it properly per database backend.
      
        Read the manual for pg_escape_string:  "Use of this function is recommended instead of addslashes()." Or read sqlite_escape_string: "addslashes() should NOT be used to quote your strings for SQLite queries; it will lead to strange results when retrieving your data."
      fa978390
  24. Oct 26, 2004
  25. Oct 19, 2004
  26. Oct 14, 2004
  27. Oct 08, 2004
    • Dries Buytaert's avatar
      · 673f3503
      Dries Buytaert authored
      - Patch #11179 by stefan: fixed broken URL in context sensitive help.
      673f3503
  28. Sep 16, 2004
    • Dries Buytaert's avatar
      · 5c7983c4
      Dries Buytaert authored
      - Patch #8179 by JonBob: reintroduced menu caching.
      5c7983c4
  29. Sep 08, 2004
    • Dries Buytaert's avatar
      · 694b577b
      Dries Buytaert authored
      - Moved some documentation around and fixed a missing translation.
      694b577b
  30. Aug 21, 2004
    • Steven Wittens's avatar
      Locale: · 05714da2
      Steven Wittens authored
      - Fixing broken .po import (due to file.inc changes).
      - Do not show error notice on import page when no languages have been added (no longer necessary due to ability to add-and-import in one step).
      - Added a notice about importing possibly taking a while.
      - Raised the PHP execution time limit for importing (if not in safe mode, similar to cron.php).
      05714da2
    • Dries Buytaert's avatar
      · 94e30bf7
      Dries Buytaert authored
      - Patch by JonBob: for consistency and readability, add brief descriptions of each source file inside the @file comment block at the head of the file. This helps with Doxygen indexing, and also allows neophytes to see what a file does immediately on opening the source, regardless of the organization of the hooks.
      94e30bf7
  31. Aug 18, 2004
    • Dries Buytaert's avatar
      · 83a739bd
      Dries Buytaert authored
      - Code improvements by Stefan: made all status messages consistent (and easier to translate).
      83a739bd
  32. Aug 16, 2004
  33. Aug 12, 2004
    • Dries Buytaert's avatar
      · 0f088b79
      Dries Buytaert authored
      - Patch #9983 by Stefan: various code style improvements.
      0f088b79
  34. Aug 11, 2004
    • Dries Buytaert's avatar
      · 1831e1b6
      Dries Buytaert authored
      - New locale module thanks to Gerhard, Goba, Marco, Kristjan and others.
      
        The new locale module provides every functionality on the web interface, so you don't need to edit the configuration files or add columns, when you add a new language. This module is an integration of the old locale and localegettext modules, plus a bunch of logic to parse Gettext Portable Object files (opposed to Machine Object files, as supported by localegettext).
      
        Note: I made some minor changes to the context-sensitive help texts and to some of the status messages.
      1831e1b6
  35. Jul 25, 2004
  36. Jun 27, 2004
    • Dries Buytaert's avatar
      I refactored quite a bit of the user.module: · 1b1c4702
      Dries Buytaert authored
      $ diffstat user.patch
      database/database.mysql |    4
      database/database.pgsql |    2
      database/updates.inc    |   10 -
      modules/block.module    |   20 +-
      modules/locale.module   |    9
      modules/profile.module  |  108 +++++++----
      modules/system.module   |    8
      modules/user.module     |  456 +++++++++++++++++++-----------------------------
      8 files changed, 289 insertions(+), 328 deletions(-)
      
      More functionality, less code.  Here is a list of the changes:
      
      - Some user API changes:
         + When $type is 'form', you have to return an associative array of groups.  In turn, each group is an array with a 'title', 'data' and 'weight'.
         + A new $type has been added, namely 'categories'.  User settings can be organized in categories.  Categories can be sorted, as can the groups within a category.  (Ordering 'categories' is somewhat broken due to a bug in the menu system.)
      
      - The 'my account > edit' page will use subtabs for each 'category'.  Read: you can break down the account settings into multiple subpages.
      
      - Profile module improvements:
         + Added support for private fields to the profile module!
         + Improved workflow of profile administration pages.
         + Improved the form descriptions.
      
      - Code improvements:
         + Unified user_edit() and user_admin_edit().
         + Unified and cleaned up the validation code.  Fixed some validation glitches too.
      1b1c4702
  37. Jun 18, 2004
    • Dries Buytaert's avatar
      · 54b77d64
      Dries Buytaert authored
      Tabs patch!
      
      CHANGES
      -------
      
       + Introduced tabs. First, we extended the menu system to support tabs. Next, a tab was added for every link that was (1) an administrative action other than the implicit 'view' (2) relevant to that particular page only. This is illustrated by the fact that all tabs are verbs and that clicking a page's tab leads you to a subpage of that page.
      
       + Flattened the administration menu. The tabs helped simplify the navigation menu as I could separate 'actions' from 'navigation'. In addition, I removed the 'administer > configuration'-menu, renamed 'blocks' to 'sidebars' which I hope is a bit more descriptive, and made a couple more changes. Earlier, we already renamed 'taxonomy' to 'categorization' and we move 'statistics' under 'logs'.
      
       + Grouped settings. All settings have been grouped under 'administer > settings'.
      
      TODO
      ----
      
       + Update core themes: only Xtemplate default supports tabs and even those look ugly.  Need help.
      
       + Update contributed modules.  The menu() hook changed drastically.  Updating your code adhere the new menu() function should be 90% of the work.  Moreover, ensure that your modue's admin links are still valid and that URLs to node get updated to the new scheme ('node/view/x' -> 'node/x').
      54b77d64
  38. Apr 29, 2004
  39. Apr 21, 2004
    • Dries Buytaert's avatar
      · 7231c88a
      Dries Buytaert authored
      - Added support for 403 handling.  Patch by JonBob.  As a side benefit,
        administrators will be able to define a custom 403 page, just as they
        can define 404 pages now.
      
        This needs to be documented in the "Changes since / migrating to ..."
        pages.
      7231c88a