Skip to content
  1. Jun 18, 2004
  2. Mar 25, 2004
    • Dries Buytaert's avatar
      Patch 6523 by Steven: · ccde65cf
      Dries Buytaert authored
      - Strips the leading / from URLs to match with block paths. The reason is that everywhere else in Drupal, we use URLs without leading slash (e.g. URL aliasing). For consistency we should keep this behaviour everywhere. The replacement uses ereg_replace instead of str_replace, but the expression now only match the beginning of the URI so in fact it's faster, esp. for longer URIs.
      
      - Updates the block docs about path matching: gets rid of leading slash, adds initial matching o
      perator '^' and emphasises the slash behaviour (which was not mentioned anywhere before)
      
      - Replaces the example expression for a negative match. It was horribly broken and odd, the repl
      acement in this patch is correct and simpler.
      ccde65cf
  3. Mar 21, 2004
  4. Mar 05, 2004
  5. Feb 25, 2004
  6. 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
  7. Feb 07, 2004
    • Dries Buytaert's avatar
      · e28bbf67
      Dries Buytaert authored
      - Batch two with profile module improvements:
         + Reworked the 'account administration' page.
         + Fixed bug in the 'edit account' page.
         + Removed some dead code from the system.module.
      e28bbf67
    • Dries Buytaert's avatar
      - First batch of profile module improvements: · 5a8129e0
      Dries Buytaert authored
         + Tidied up the profile configuration page: grouped form elements.
      
         + Tidied up the block configuration settings: removed hard-coded
           table.
      
         + Changed the profile API to return the preferred group name, and
           changed the user module to group settings.  Modules implementing
           the _user hook will need to be udpated.
      
         + Removed register_form and register_validate for now.
      5a8129e0
  8. 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
  9. Jan 21, 2004
    • Dries Buytaert's avatar
      · 8d8e3d6a
      Dries Buytaert authored
      Patch 5187 by Goba:
       - puts the long multiline help text into one string
       - fixes the ambiquity of calling two things on the same name: "custom block"
         now the user customizeable blocks are called custom blocks, and the admin
         defined blocks are called Administator Defined Blocks
       - added info on throttle to the explanation on when a block is displyed
       - also fixing some small typos
      8d8e3d6a
  10. Jan 19, 2004
    • Dries Buytaert's avatar
      · 652fb347
      Dries Buytaert authored
      - Removed instances of the 'throttle_enable' variable.
      652fb347
  11. Jan 17, 2004
    • Dries Buytaert's avatar
      · 6e1cb6e0
      Dries Buytaert authored
      - Patch #5184: fixed block path and aliases.  Patch by Nick.
      6e1cb6e0
  12. Jan 11, 2004
  13. Dec 29, 2003
  14. Dec 28, 2003
  15. Dec 08, 2003
    • Dries Buytaert's avatar
      · 3904790e
      Dries Buytaert authored
      - Tidied up the DoxyGen comments.  Patch by Kjartan.
      3904790e
  16. Dec 07, 2003
    • Dries Buytaert's avatar
      · bea3dbb7
      Dries Buytaert authored
      - Patch 0185 by Jeremy: made it possible to automatically disable modules when
        under heave load.
      bea3dbb7
  17. Dec 04, 2003
    • Dries Buytaert's avatar
      · d45bf0f1
      Dries Buytaert authored
      - Patch 185 by Ax: fixed undefined variables, synchronized xtemplate with sf, etc.
      d45bf0f1
  18. 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
  19. Nov 29, 2003
  20. Nov 28, 2003
    • Dries Buytaert's avatar
      · ece42b6c
      Dries Buytaert authored
      - Bugfix by Jeremy.
      ece42b6c
    • Dries Buytaert's avatar
      · 733d286b
      Dries Buytaert authored
      - Made it possible to auto-throttle blocks.  That is, blocks can be
        configured to be disabled when under excessive load.  Patch by Jeremy.
      733d286b
  21. Nov 25, 2003
    • Dries Buytaert's avatar
      · c0494c0a
      Dries Buytaert authored
      - Committed phase 4 of JonBob's menu system changes.
      c0494c0a
  22. Nov 24, 2003
    • Dries Buytaert's avatar
      Patch by Ax to fixe and improve to the core doxygen PHPdoc: · 06045ff7
      Dries Buytaert authored
        * fixes all doxygen warnings [#]_ in the current code base
          + changes @param style from phpDocumentor (@param type $var desc) to doxygen (@param $var desc)
          + documents all undocumented parameters
          + escapes / fixes html warnings
          + fixes @defgroup in theme.inc
        * adds more groupings [#]_
          + drupal_{set|get}_title, drupal_{set|get}_breadcrumb
          + pager.inc: pager_api (pager_query(), pager_display()), pager pieces
        * adds a new group "themeable" which contains all themeable functions.
      06045ff7
  23. Nov 20, 2003
    • Dries Buytaert's avatar
      · 4bdac433
      Dries Buytaert authored
      - Patch by JonBob:
      
        Phase 2 of the menu system integration project. This unifies the interface
        used by admin and non-admin pages, and deprecates the _page hook in favor of
        explicit callbacks from menu(). Breadcrumbs, titles, and help text go away
        as a result of this patch; they will return in the phase 3 patch, printed
        by the theme.
      4bdac433
  24. Nov 19, 2003
    • Dries Buytaert's avatar
      - Block and theme improvements. Patch by Ax. · 98063726
      Dries Buytaert authored
         + block_list() (in block.module): returns an array of block objects for
           $region.
         + theme_blocks() (in theme.inc): uses block_list() and theme("block") to
           actually render them.
      
        Advantages:
         + Decouples blocks content and layout, allows block_list() to be used
           for non-output purposes (think "pull").
         + Unifies naming in theme.inc: render_blocks()) didn't really fit there.
         + Puts block_list() in blocks.module where it logically belongs.
      
      - Removed some cruft from the Xtemplate theme.  Patch by Ax.
      98063726
  25. Nov 13, 2003
    • Dries Buytaert's avatar
      · 36bb5755
      Dries Buytaert authored
      - table(...) -> theme("table", ...)
      36bb5755
  26. Nov 07, 2003
    • Dries Buytaert's avatar
      · ef0fa006
      Dries Buytaert authored
      - Usability improvement: replaced many selection boxes by radio buttons.
        Patch by Stefan.
      ef0fa006
  27. Oct 09, 2003
    • Dries Buytaert's avatar
      · 1a5fcacd
      Dries Buytaert authored
      - Committed part 3 of Michael's help system improvements: removed the $help
        parameter from the menu() function.
      1a5fcacd
  28. Oct 07, 2003
    • Dries Buytaert's avatar
      · 22c889e7
      Dries Buytaert authored
      - Help system improvements: eliminated the _system hook.  Patch by Michael.
      
      - Bloggerapi module fixes.  Patch by Kjartan.
      
      - Coding style fixes.  Patch by Michael.
      22c889e7
  29. Oct 05, 2003
    • Dries Buytaert's avatar
      · 30bae36a
      Dries Buytaert authored
      - Bugfix: the block module's help was not being displayed.  Patch by Gabor.
      30bae36a
  30. Oct 03, 2003
    • Dries Buytaert's avatar
      · 058971c3
      Dries Buytaert authored
      - Help improvements and translation improvements from Michael.  Thanks!
      058971c3
  31. Sep 28, 2003
    • Dries Buytaert's avatar
      · b4ceaac3
      Dries Buytaert authored
      - Block module fixes.  Patch by Kjartan.
      b4ceaac3
    • Dries Buytaert's avatar
      · bcfa6dca
      Dries Buytaert authored
      - Translation improvements for the block module help.  Patch by Gabor.
      bcfa6dca
    • Dries Buytaert's avatar
      · 069e1bb8
      Dries Buytaert authored
      - More translation fixes for the menu items.  Patch by Gabor.
      069e1bb8
  32. Sep 27, 2003
    • Dries Buytaert's avatar
      · fe09d5a7
      Dries Buytaert authored
      - Committed Al's new admin link texts.  Remarks:
      
        1) As explained by Al, there is still a glitch with the 'create content'
           menu.
        2) The user module part of the patch did not apply due to Kjartan's earlier
           patch.
      fe09d5a7
  33. Sep 26, 2003
    • Dries Buytaert's avatar
      · f104d3cc
      Dries Buytaert authored
      - Committed the admin menu integration patch.  Thanks Adrian, Stefan and others.
      f104d3cc
  34. Sep 19, 2003
    • Dries Buytaert's avatar
      · 2fbc7fcf
      Dries Buytaert authored
      - Committed a partial administration page integration patch.
      2fbc7fcf
  35. Aug 30, 2003
  36. Aug 13, 2003