Skip to content
  1. Jun 30, 2003
    • Dries Buytaert's avatar
      · 74d9266b
      Dries Buytaert authored
      - Bugfix: fixed calendar block caching.  Patch by Al.  Fixes bug #2131.
      
      - Improvement: improved the block module documentation.  Patch #59 by
        Gerhard.
      74d9266b
  2. Jun 26, 2003
  3. Jun 24, 2003
  4. Jun 19, 2003
    • Dries Buytaert's avatar
      · 828ba665
      Dries Buytaert authored
      - Bugfix: fixed utf-8 problem for people that use PHP 4.2.x or below.  Patch #33 by Al.
      
      - Bugfix: fixed translation problems in the user module and the block module.  Patch by Stefan.
      
      - Improvement: made it impossible to delete user role #1 and #2.  Patch #38 by Al.
      
      - Improvement: fixed the "Allowed HTML tag" issues.  Makes for better code and improved usability.  Patch #35 by Al.
      
        NOTE: as soon the compose tips make their way into CVS, most of this code can be removed.
      828ba665
  5. Jun 16, 2003
    • Dries Buytaert's avatar
      · ef873561
      Dries Buytaert authored
      - Improvements: XHTML-ifications.  Patch by GmbH.  See feature #1813.
      ef873561
  6. Jun 15, 2003
    • Dries Buytaert's avatar
      · eb030cb9
      Dries Buytaert authored
      - Improvements: XHTML-ifications.  Patch by GmbH.
      eb030cb9
  7. Jun 10, 2003
    • Dries Buytaert's avatar
      · 222e1e55
      Dries Buytaert authored
      - Documentation improvements: improved and updated the block module documentation.  Patch #44 by Al.  We should add some real-life path examples!
      
      - Fixed the "blog it" image size.  Patch #49 by Al.
      
      - Some SQL performance improvements to the forum module.  This should also be more PostgreSQL safe.  Patch by me.
      
      mysql> SELECT n.nid, n.created AS timestamp, u.name AS name, u.uid AS uid FROM forum f, node n LEFT JOIN users u ON n.uid = u.uid WHERE f.tid = 2 AND n.nid = f.nid AND n.type = 'forum' AND n.status = 1 ORDER BY timestamp DESC LIMIT 1, 0;
      ==> 0.63 sec
      
      changed to:
      
      mysql> SELECT n.nid, n.created AS timestamp, u.name AS name, u.uid AS uid FROM forum f LEFT JOIN node n ON n.nid = f.nid LEFT JOIN users u ON n.uid = u.uid WHERE f.tid = 2 AND n.nid = f.nid AND n.type = 'forum' AND n.status = 1 ORDER BY timestamp DESC LIMIT 1, 0;
      ==> 0.00 sec
      222e1e55
  8. Jun 08, 2003
  9. May 29, 2003
    • Dries Buytaert's avatar
      · 8d2b1238
      Dries Buytaert authored
      - Michael Frankowski's excellent help text improvements!
      8d2b1238
  10. May 13, 2003
    • Dries Buytaert's avatar
      · c2d2fb73
      Dries Buytaert authored
      - Fixed a typo in the PostgreSQL database scheme.  Patch by Michael Frankowski.
      
      - Fixed a typo in the MSSQL database scheme.  Patch by Michael Frankowski.
      
      - Removed dependency on "register_globals = on"!  Patches by Michael Frankowski.
      
        Notes:
      
        + Updated the patches to use $foo["bar"] instead of $foo['bar'].
        + Updated the INSTALL and CHANGELOG files as well.
      
      - Tiny improvement to the "./scripts/code-clean.sh" script.
      c2d2fb73
  11. May 07, 2003
    • Dries Buytaert's avatar
      · a161110a
      Dries Buytaert authored
      - Applied  Michael Caerwyn's "%s -> %d" patch.
      
      - Changed all occurences of '%d' to %d as suggested on the mailing list.
      a161110a
  12. Apr 21, 2003
    • Dries Buytaert's avatar
      · c7fc340e
      Dries Buytaert authored
      - Added some missing quotes.
      c7fc340e
  13. Apr 19, 2003
    • Dries Buytaert's avatar
      · b85cf719
      Dries Buytaert authored
      - Applied modified version of Al's "block delta" patch.  I left out the
        blogroll feature as I think it would get very confusing.  I don't mind
        to add it but it need some thought and documentation as it somewhat
        conflicts with the existing cloud module.
      
        These changes require you to run update.php.
      b85cf719
  14. Mar 29, 2003
    • Dries Buytaert's avatar
      · 4742ba35
      Dries Buytaert authored
      - Fixed some SQL query directives.
      4742ba35
    • Dries Buytaert's avatar
      · b3225af1
      Dries Buytaert authored
      - Fixed typo in the block delete link.  Reported by Paul C.
      b3225af1
  15. Feb 20, 2003
    • Dries Buytaert's avatar
      · 277ceae5
      Dries Buytaert authored
      - New menu houskeeping.  Prototyped by Zbynek.
      
        The following modules need updating:
          * glossary module
          * feed module (Breyten's version)
          * mailhandler module
          * notify module
          * project module
          * smileys module
          * admin module
          * style module
          * taxonomy_dhtml module
      
        To avoid unexpected problems menu_add() is deprecated (it will print an
        error message when used) and menu() should be used instead.
      277ceae5
  16. Feb 15, 2003
    • Dries Buytaert's avatar
      · 83f5d828
      Dries Buytaert authored
      - Everything is using theme("function") now instead of $theme->function().
      83f5d828
  17. Jan 23, 2003
  18. Jan 06, 2003
    • Dries Buytaert's avatar
      · 89b2069e
      Dries Buytaert authored
      - Clean URL patch.
      89b2069e
  19. Jan 02, 2003
    • Dries Buytaert's avatar
      · a728900d
      Dries Buytaert authored
      - Bugfix: some variables were not being reset causing wrong links to be
        displayed.  Patch by Ax.
      a728900d
  20. Dec 31, 2002
    • Dries Buytaert's avatar
      · de95001c
      Dries Buytaert authored
      - Tidied up the use of check_output().  Might make rendering pages a bit
        snappier (performance improvement).
      de95001c
  21. Dec 29, 2002
    • Dries Buytaert's avatar
      · d626a6cf
      Dries Buytaert authored
      CHANGES:
      
      - Usability improvement: made the block administration pages use the
        new table rendering functions.  By the way, the old code rendered
        invalid HTML code.
      
      - Usability improvement: saving block changes will now show a status
        message.
      
      - Usability improvement: quite a few strings could not be translated.
      
      TODO:
      
      - I think the "enabled" and "custom" field are somewhat confusing.
        Suggestions?
      d626a6cf
  22. Dec 24, 2002
    • Dries Buytaert's avatar
      · 22fa9ed7
      Dries Buytaert authored
      - Refactored the administration pages.
      22fa9ed7
  23. Dec 02, 2002
    • Dries Buytaert's avatar
      · 5b39f676
      Dries Buytaert authored
      * Applied slightly modified version of Marco's taxonomy patch:
      
       - Fixed a bug with get_tree and multiple parents.
       - Fixed 3 wrong caches (this will avoid some queries).
       - Extension to taxonomy_term_count_nodes() (feature #159): "currently
         calling taxonomy_term_count_nodes() returns the amount of nodes in each
         term, would it be possible to extend this function so that it would only
         return the amount of nodes of a certain type under each term.
       - Confirm deleting a vocabulary or a term (requested by Moshe).
       - Use form_weight() in vocabulary and term forms.
       - After submitting a term, we end up at the term page (requested by Moshe).
       - Added status messages when adding, editing and deleting vocabularies and
         terms
       - Minor clean ups
      
      * Made sure all modules use the same link delimiter; "|" for now.
      5b39f676
  24. Nov 20, 2002
  25. Nov 17, 2002
    • Dries Buytaert's avatar
      · 9e32c2e9
      Dries Buytaert authored
      Patch based on work of Kjartan:
      
      - Changed cache API.
      
      - Fixed caching bug in comment.module.  Odd this hasn't been reported yet.
      
      - Fixed caching bug in forum.module.
      
      - Fixed caching bug in system.module.
      
      - Fixed caching bug in block.module.
      
      - Simplified caching support in forum.module thanks to improved cache API.
      9e32c2e9
  26. Nov 16, 2002
    • Dries Buytaert's avatar
      · 02f0dce5
      Dries Buytaert authored
      - Fixed bug in block module: "Array" was displayed on the user information
        page.
      02f0dce5
  27. Nov 01, 2002
    • Dries Buytaert's avatar
      · cc381c14
      Dries Buytaert authored
      - Fixed glitch in block module: the admin links were not composed
        correctly.  Patch by Stefan.
      
      - Added missing t() functions and improved the %x directives for
        better readability and to ease the process of translating your
        site.  Patches by Stefan.
      
      - Made two small additions to the 'code-clean.sh' script; it will
        now remove patch related junk.
      
      NOTES:
      
      - I removed the · related bits.  Let's tackle these later on
        in a separate patch after we got some sort of consensus.
      
      - I removed the 'module_exist("drupal")' check in the user module;
        I *think* it is incomplete and therefore incorrect.
      
      - Stefan, try using quotes in your translations and check whether
        everything still works.  Example: translate the "Create account"
        button to "Create \"haha\" account \'hihi\'" and see if you can
        still create new accounts.  Maybe automate this using a quick
        hack in the locale module ...
      cc381c14
  28. Oct 30, 2002
    • Dries Buytaert's avatar
      · c9157a23
      Dries Buytaert authored
      - Made sure blocks are sorted by weight.  Patch by Ax.
      c9157a23
  29. Oct 26, 2002
    • Dries Buytaert's avatar
      · 8d103a08
      Dries Buytaert authored
      - Committed Marco's block rewrite:
      
         + Blocks are not longer called if not rendered: major performance
           improvement.
         + Fixed some bugs (preview option was broken, path option was broken).
         + Removed "ascii"-type blocks.
         + Added permission to for "PHP blocks"
         + ...
      
        NOTES:
      
         + You'll want to run "update.php":
      
             ALTER TABLE blocks DROP remove;
             ALTER TABLE blocks DROP name;
      
         + You'll want to update your custom modules as well as the modules in
           the contrib repository.  Block function should now read:
      
             function *_block($op = "list", $delta = 0) {
               if ($op == "list") {
                 return array of block infos
               }
               else {
                 return subject and content of $delta block
               }
             }
      8d103a08
  30. Oct 17, 2002
  31. Sep 30, 2002
  32. Sep 26, 2002
    • Dries Buytaert's avatar
      · 2c165d0e
      Dries Buytaert authored
      - Applied Axel's patch to sort blocks by weight.
      2c165d0e
  33. Jun 09, 2002
    • Dries Buytaert's avatar
      · 81d0d7b2
      Dries Buytaert authored
      - Changed a " drupal " into " Drupal ".
      81d0d7b2
  34. Jun 08, 2002
    • Kjartan Mannes's avatar
      - improved module descriptions. · 5d36c704
      Kjartan Mannes authored
      - removed admin options for queue and comment module if the modules are not
        loaded.
      - nodes are now auto promoted when queue module isn't enabled.
      - moderation result block is now visible by the node author.
      5d36c704
  35. Jun 01, 2002
    • Kjartan Mannes's avatar
      - adding descriptions to modules (thanks Joe + Scott). · 4a28077f
      Kjartan Mannes authored
      - fixed comment flat list view missing 1 comment.
      - changed update.php around a bit.
          * security check isn't in effect if the db hasn't been updated.
          * instructions re-organized.
          * fixed some minor updates.
      - updated database.mysql done by UnConeD.
      - changelog update.
      4a28077f
  36. May 31, 2002
    • Dries Buytaert's avatar
      · 38aaf5f3
      Dries Buytaert authored
      - Added missing translations and the like.
      38aaf5f3
  37. May 12, 2002
  38. May 11, 2002
  39. May 02, 2002