Skip to content
  1. Dec 26, 2002
    • Dries Buytaert's avatar
      · b2f78aa6
      Dries Buytaert authored
      - Made Drupal report an warning when magic_quotes are disabled.
      b2f78aa6
  2. Dec 16, 2002
    • Dries Buytaert's avatar
      · a5421bc1
      Dries Buytaert authored
      - Fixed bug in cache_clear_all().  Patch by Marco.
      a5421bc1
  3. Dec 11, 2002
    • Dries Buytaert's avatar
      · 9e8aea67
      Dries Buytaert authored
      - Fixed typo.  Reported by Kobus.
      9e8aea67
  4. Nov 29, 2002
    • Dries Buytaert's avatar
      · 6c862208
      Dries Buytaert authored
      - Fixed small glitch in drupal_goto(): somethimes a "&" got appended.  Patch
        by Marco.
      6c862208
  5. Nov 21, 2002
    • Dries Buytaert's avatar
      · 4f94488b
      Dries Buytaert authored
      - SID will now only be appended when session.use_trans_sid is set.  Patch
        by Kjartan.
      4f94488b
  6. 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
  7. Nov 09, 2002
    • Dries Buytaert's avatar
      · 562df8fe
      Dries Buytaert authored
      * Added Jeremy's pager:
      
       "This is a simple, generic pager for Drupal-CVS.  It is designed to be
        easily themeable and expandable.  The code is highly-commented to
        enhance readability."
      
       "Pagers are constructed by combining the provided pieces (all of which
        can be easily modified to display the text or image you prefer) into
        your custom pager."
      
      * Statistics module fixes by Jeremy:
      
       - removed superfluous check for existence of watchdog()
       - saving changes in admin page displays status and returns same page
       - no longer return 1971/01/01 in "view statistics" table
       - switched from "!=" to "<>" in SQL queries for ANSI-SQL compliance
       - switched from "MAX(timestamp) as timestamp" to "MAX(timestamp) as
         max_timestamp" moving towards ANSI-SQL compliance.
      
      * Added a "theme_item_list" function to format itemized lists.  Also
        changed a couple of modules to take advantage of it.  Makes for a
        more consistent UI.
      562df8fe
  8. 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
  9. Oct 20, 2002
  10. Oct 04, 2002
  11. Sep 27, 2002
  12. Aug 08, 2002
    • Dries Buytaert's avatar
      · b8c815d2
      Dries Buytaert authored
      - An attempt to solve drupal_goto() in presence of session IDs.
      b8c815d2
  13. Jul 06, 2002
    • Dries Buytaert's avatar
      · b5c56be3
      Dries Buytaert authored
      - Made it possible to store arrays in the variables table.  Patch by Marco.
      b5c56be3
  14. Jul 05, 2002
    • Dries Buytaert's avatar
      · 118da4b7
      Dries Buytaert authored
      - A variety of small localization updates.  Patch by Ori Folger.
      118da4b7
  15. Jun 15, 2002
  16. Jun 14, 2002
  17. May 31, 2002
    • Dries Buytaert's avatar
      · 38aaf5f3
      Dries Buytaert authored
      - Added missing translations and the like.
      38aaf5f3
  18. May 21, 2002
  19. May 13, 2002
  20. May 12, 2002
  21. May 11, 2002
  22. May 05, 2002
    • Dries Buytaert's avatar
      · f9b29369
      Dries Buytaert authored
      - Fixed broken RSS feeds.
      
        TODO:
          + Make l()/lm()/la() urlencode() URLs?
          + Fix problems with the #-trick in drupal_url()/l().
      f9b29369
  23. May 04, 2002
  24. May 03, 2002
  25. May 02, 2002
  26. Apr 27, 2002
    • Dries Buytaert's avatar
      · f8329dd4
      Dries Buytaert authored
      Patch by Moshe Weitzman:
      
      - request_uri() behaves on non-apache web servers. i've tested on IIS and
      apache (many platforms).
      
      - modules may now implement the _search_item() hook which overrides the
      default formatting of search results. modules already can customize which
      fields are indexed. no module currently uses this hook but
      externalpage.module expects to do so.
      
      - added an optional $attribs argument to l(), lm(), and la() which is an
      associative array of attributes which are inserted into the <a> tag (feature
      #146).
      
      - drupal_str_replace() is deleted (i had recently added it). i verified that
      no scripts are currently calling this function. use strtr() or str_replace()
      instead.
      
      - arbitrary elements may be added to the <channel> and <item> blocks of an
      RSS feed by passing the $args associative array. the core RSS engine is now
      able to support elements like <cloud> and <catagory> [1] and RSS 1.0[2]
      
      [1] http://backend.userland.com/rss092
      [2] http://groups.yahoo.com/group/rss-dev/files/namespace.html
      f8329dd4
  27. Apr 24, 2002
  28. Apr 22, 2002
    • Kjartan Mannes's avatar
      - bug fixes: · de5b9a16
      Kjartan Mannes authored
          * fixed mails not being parsed properly.
          * tracker now shows user name when you view your own recent
            comments.
          * link to submission queue now points to the right place.
          * fixed jabber module.
          * theme is now activated when changed.
      - applied Gerhards coding style patch.
      de5b9a16
  29. Apr 20, 2002
    • Dries Buytaert's avatar
      · 8043cb99
      Dries Buytaert authored
      - Applied Marco's big patch, including contributions from Moshe:
      
          + Changed the db_query() API.
      
          + Wrapped all links in l(), lm(), la(), ..., drupal_url() functions.
      
          + XHTML-ified some HTML.
      
          + Wrapped a lot of text in the administrative pages in a t()
            function.
      
          + Replaced all $REQUEST_URI/$PATH_INFOs by request_uri().
      
          + Small bugfixes (eg. bug in book_export_html() and clean-ups (eg.
            RSS code).
      
          + Fixed some bugs in the taxonomy module (eg. tree making bug), added
            new functionality (eg. new APIs for use by other modules), included
            Moshe's taxonomy extensions, and some documentation udpates.
      
          + ...
      8043cb99
  30. Apr 14, 2002
    • Dries Buytaert's avatar
      · d8cd5496
      Dries Buytaert authored
      - Added Marco's long-awaited taxonmy module and patches - a replacement
        for the meta system.  The patches add some extra functionality to the
        comment system (for example, comments can be set read-only) and fix a
        couple of small problems.
      
        + I integrated the required SQL updates from the varius *.mysql files
          into the "update.php" script.  Upgrading should be easy ...
      
        + I did not apply/commit the "user.diff" as requested by Marco ...
      
        + I didn't know what to do with "forum.module" and "forum2.module":
          what do you want me to do with it Marco?  Which one should go in?
      
        + Can we remove "node_index()" now; both from "node.module" and the
          themes?
      
        + Thanks Marco!
      d8cd5496
  31. Apr 02, 2002
    • Kjartan Mannes's avatar
      - made the user information block into two different blocks. One for · 1e4308a9
      Kjartan Mannes authored
        login and one for user information.
      - added link to help in book module (post-patch, see below).
      - applied various patches:
        Patch by Greg Tyrelle <greg@tyrelle.net>
        - tracker module now shows usernames next to comments.
      
        Patch by Moshe Weitzman <moshe@wallaware.com>
        - book module has a more complete help.
        - added administrative link to export book to html
        - fixed non book nodes not showing up in trees.
      
        Patch by moshe weitzman <weitzman@tejasa.com>
        - links can be defined in the configuration file.
      1e4308a9
  32. Mar 05, 2002
    • Kjartan Mannes's avatar
      - applied search patch. · e3d2c46f
      Kjartan Mannes authored
      - added who is online block.
      - made weblog module more configurable.
      - users may now delete their own accounts (Feature #8)
      - users may now request a password using email address *or* username.
        formerly required both items to match an account which was onerous.
      - the link to request a new password is now presented whenever a user
        fails login.
      - there is now a confirmation message after submitting edits to your
        user information.
      - error messages in user.module may now be stylized by themes.
      - <hook>_form has a $param setting you can fill with form parameters.
      - improved wording for a few config settings.
      - fixed various non-coding standard things.
      e3d2c46f
  33. Jan 27, 2002
    • Dries Buytaert's avatar
      · f9a508d5
      Dries Buytaert authored
      - Fixed more than 30 HTML and XML well-formedness errors.
      f9a508d5
  34. Jan 05, 2002