Skip to content
  1. Jun 19, 2005
  2. Apr 01, 2005
  3. Mar 31, 2005
  4. Feb 10, 2005
  5. Feb 01, 2005
  6. 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
  7. Nov 23, 2004
  8. Nov 15, 2004
    • Dries Buytaert's avatar
      · 9979acea
      Dries Buytaert authored
      - Patch #12783 by Stefan: various small consistency/usability improvements.
      9979acea
  9. Oct 23, 2004
    • Dries Buytaert's avatar
      · 1400f757
      Dries Buytaert authored
      - Patch #11952 by Neil Drumm: the path module's help text contained information that was no longer up-to-date.
      1400f757
  10. Sep 16, 2004
    • Dries Buytaert's avatar
      · c4403eed
      Dries Buytaert authored
      - Patch #10603 by TDobes: bugfix: URL aliases got lost when deleting revision.
      c4403eed
    • Dries Buytaert's avatar
      · 5c7983c4
      Dries Buytaert authored
      - Patch #8179 by JonBob: reintroduced menu caching.
      5c7983c4
  11. Aug 21, 2004
    • 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
  12. Aug 19, 2004
    • Dries Buytaert's avatar
      · fa25c7a0
      Dries Buytaert authored
      - Code improvements by Stefan: use capital letters for header titles (and added some missing t() functions).
      fa25c7a0
  13. 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
  14. Aug 16, 2004
    • Dries Buytaert's avatar
      · 2f33b939
      Dries Buytaert authored
      - Patch #9983 by Stefan: usability improvement: made sure all status messages start with a capital letter.
      2f33b939
  15. Aug 07, 2004
    • Dries Buytaert's avatar
      · bdbc34c9
      Dries Buytaert authored
      - Patch #6760 by JonBob: refactored the taxonomy module URLs to be nicer, improved the code/Doxygen comments.
      
        As discussed before, the path "taxonomy/page/or/1,2" becomes "taxonomy/term/1+2" and the path "taxonomy/page/and/1,2" becomes "taxonomy/term/1,2". The most common case of listing nodes attached to a single term becomes simpler, since it doesn't require a meaningless "or" or "and". A depth of "0" is assumed, but a positive integer or "all" can be used. Feeds are available at "taxonomy/term/1+2/all/feed" and the like.
      
        This iteration of the patch also changes the structure of taxonomy_select_nodes(), since it was not following Drupal conventions. A handful of contrib modules call this function, and will need to be updated. Instead of passing in a $taxonomy object containing parameters for the function, the parameters are passed independently. This simplifies the code quite a bit. The queries were changed to only return node IDs for speed; all results from this function are passed through node_load() anyway, so the extra information returned was discarded. The AND query was also changed to avoid the strange trick and remove an extra query, at the expense of a table join per root term in the AND. This cleans up the code substantially while at the same time enabling the use of AND with a depth parameter.
      
        TODO: update contribution modules.
      bdbc34c9
  16. Jul 13, 2004
  17. Jul 11, 2004
    • Dries Buytaert's avatar
      · 9e43afad
      Dries Buytaert authored
      - Patch by Matt: made it possible to alias an URL multiple times.
      9e43afad
  18. Jul 10, 2004
    • Dries Buytaert's avatar
      · ac5b5616
      Dries Buytaert authored
      - More tab-improvements by JonBob: improved support for the default tabs!
      ac5b5616
  19. Jul 08, 2004
    • Dries Buytaert's avatar
      · 24600b8a
      Dries Buytaert authored
      - Simplified some of the help texts.
      
      - Removed left-over instance of theme('error'): error handling is now done by
        the form code.
      24600b8a
  20. Jul 04, 2004
    • Dries Buytaert's avatar
      · fe2b3e7c
      Dries Buytaert authored
      - Patch by Steven and me: refactored the form handling of nodes. The node system is now using form_set_error() and friends like the rest of Drupal does. This makes for both a consistent user experience and consistent code. It simplifies the forms and validation code, however, it does change the node API slightly:
      
          * The _validate hook and the _nodeapi('validate') hook of the node API (1) no longer take an 'error' parameter and (2) should no longer return an error array. To set an error, call form_set_error().
      
          * The _form hook of the node module no longer takes a form hook and should not worry about displaying errors. Ditto for _nodeapi('form_post') and _nodeapi('form_pre').
      fe2b3e7c
  21. Jun 22, 2004
    • Dries Buytaert's avatar
      · 81bebc01
      Dries Buytaert authored
      - Patch #8500 by jseng (modified/simplified): improved usability of editing
        URL aliases.
      81bebc01
  22. 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
  23. Jun 01, 2004
  24. May 31, 2004
    • Dries Buytaert's avatar
      · 7a33d9f6
      Dries Buytaert authored
      - Patch #7350 by Mathias: return part a taxonomy tree to a user-defined
        depth/level.
      
      - Updated CHANGELOG.txt.
      7a33d9f6
    • Dries Buytaert's avatar
      · 45fdcf8a
      Dries Buytaert authored
      - Updated the form handling to use form_set_error().  All core modules have
        been updated (almost none have error checking for forms) except the node
        forms ...
      45fdcf8a
  25. May 18, 2004
  26. 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
  27. Mar 20, 2004
  28. Feb 15, 2004
    • Dries Buytaert's avatar
      · 4b0b2d02
      Dries Buytaert authored
      - Patch by Steven: removed redundant permission checks.  These are no longer
        required thanks to the new 404 handling.
      4b0b2d02
  29. Feb 14, 2004
    • Dries Buytaert's avatar
      · 6dcb3c46
      Dries Buytaert authored
      - Code improvements by Mathias: made the path module use drupal_set_message().
      6dcb3c46
  30. Feb 01, 2004
    • Dries Buytaert's avatar
      · 7ce34a1c
      Dries Buytaert authored
      - Fixes by Goba: updated help text of mass URL aliasing and fixed escaping problem.
      7ce34a1c
  31. Jan 23, 2004
    • Dries Buytaert's avatar
      · b85eb11e
      Dries Buytaert authored
      Patch 5287 by Stefan: multiline help texts should become inside a single $output.
      b85eb11e
  32. Jan 07, 2004
    • Dries Buytaert's avatar
      · 94f6e94f
      Dries Buytaert authored
      - Many excellent news aggregator improvements by Kjartan:
          + Added drupal_http_request().
          + Replaced rssfeeds with OPML feed subscription list.
          + Added support for pubDate.
          + Added support for conditional gets using ETag and Last-Modified.
      94f6e94f
  33. Dec 29, 2003
  34. Dec 28, 2003
  35. Dec 09, 2003
    • Dries Buytaert's avatar
      · d79d01f3
      Dries Buytaert authored
      - Path module documentation updates.
      d79d01f3
  36. Dec 08, 2003
    • Dries Buytaert's avatar
      - Improvements by Goba: · 712a30b5
      Dries Buytaert authored
        + removes the lots of pagers and indirect pager themeing
        + add the theme_pager() function, which should be called as
          theme("pager", ...) to get a pager.
      712a30b5
  37. Dec 01, 2003
    • Dries Buytaert's avatar
      · 4e2c0b25
      Dries Buytaert authored
      - Introduced a drupal_set_message() and drupal_get_message() function.
      
        Contributed themes and modules need to be updated:
         - modules: status() is no more; use drupal_set_message() instead.
         - themes: use drupal_get_message() to check for status messages and
           visualize them.
      4e2c0b25
  38. Nov 27, 2003