Skip to content
  1. Jan 27, 2004
    • Dries Buytaert's avatar
      · f99eb4dc
      Dries Buytaert authored
      - Fixed bug 5440: sort() -> asort().  Suggested by Goba.
      f99eb4dc
  2. Jan 26, 2004
  3. Jan 19, 2004
    • Dries Buytaert's avatar
      · 652fb347
      Dries Buytaert authored
      - Removed instances of the 'throttle_enable' variable.
      652fb347
  4. Jan 05, 2004
    • Steven Wittens's avatar
      Committed filter separation patch: all filter-related things are now in... · c2151b52
      Steven Wittens authored
      Committed filter separation patch: all filter-related things are now in filter.module (which is a required module).
      To do this cleanly, I reorganised some bits of system.module: there is now a generic handler available for simple variable-get/set based configuration pages. Look at filter_admin() or system_view() for example usage.
      
      (based on the patch by Goba)
      c2151b52
  5. 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
  6. Nov 18, 2003
    • Dries Buytaert's avatar
      · a0640e66
      Dries Buytaert authored
      - Improved module loading when serving cached pages.  Moshe's bootstrap patch.
      
      - Used legend and fieldset tags for the configuration page.
      a0640e66
  7. Jul 10, 2003
    • Dries Buytaert's avatar
      · 337b3c9d
      Dries Buytaert authored
      - Committed a slightly modified version of Slavica's table prefix patch.
      337b3c9d
  8. Jun 06, 2003
  9. Apr 21, 2003
    • Dries Buytaert's avatar
      · a956de78
      Dries Buytaert authored
      - Fixed some PHP "notices".
      a956de78
  10. Mar 12, 2003
    • Dries Buytaert's avatar
      · 4ad174c4
      Dries Buytaert authored
      - Eliminated system_init(), the session stuff, and made it possible to
        rebuild the menu.
      4ad174c4
  11. Mar 09, 2003
  12. Jan 06, 2003
    • Dries Buytaert's avatar
      · 89b2069e
      Dries Buytaert authored
      - Clean URL patch.
      89b2069e
  13. Dec 21, 2002
    • Dries Buytaert's avatar
      · 8f673be3
      Dries Buytaert authored
      - Small improvement.  Patch by Moshe.
      8f673be3
  14. Nov 29, 2002
    • Dries Buytaert's avatar
      · 06081084
      Dries Buytaert authored
      - Patch by Jeremy to fix a module loading bug:
      
          - module.inc:
             + added call to _init for all modules
      
          - statistics.module:
             + added statistics_init()
             + moved all global actions into statistics_init()
      06081084
  15. Nov 17, 2002
  16. Nov 08, 2002
    • Dries Buytaert's avatar
      · b3abbc4b
      Dries Buytaert authored
      Patch by Natrak:
      
      - Modules and themes now use the same functions to find and administer
        files.
      - Modules can now be placed in sub-directories.
      - Theme descriptions can no longer be edited. This will be handled by
        Dries' theme_conf patch.
      - Update required to keep old modules enabled.
      b3abbc4b
  17. 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
  18. Oct 17, 2002
  19. Sep 30, 2002
  20. Aug 15, 2002
    • Dries Buytaert's avatar
      · d102bf73
      Dries Buytaert authored
      - Reverted module.inc to the old module_invoke() function.
      d102bf73
  21. Aug 14, 2002
    • Dries Buytaert's avatar
      · 343437e7
      Dries Buytaert authored
      - "module_invoke()" and "module_invoke_all()" can now be called with any
         number of arguments.  Patch by Gerhard.
      343437e7
  22. Jun 27, 2002
  23. 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
  24. May 23, 2002
    • Kjartan Mannes's avatar
      - Coding style changes. · 793db831
      Kjartan Mannes authored
      - Included modules will now cause parse errors instead of them being supressed.
        Was making debugging really hard.
      793db831
  25. Apr 14, 2002
    • Kjartan Mannes's avatar
      This is a major change to the system, needs more testing! · 55927616
      Kjartan Mannes authored
      Committing Changes by Moshe Weitzman:
      - admin_user_account(), user_edit(), and user_view() no longer have any
        hard code for authentication modules. instead authentication modules
        implement the _user hook.
      - fixed a couple 'help' typos.
      - linked the 'REGISTER' text in the login block to the register page.
        this page now advertises DA better if site employs DA.
      - admins may now edit everything about a user account (was a feature
        request).
      - user #1 may now login immediately, in addition to receiving his
        password via email.
      
      Other changes:
      - modules and themes are now enabled/disabled in the administrative /
        settings / modules | themes pages. Requires SQL update and things must
        be enabled before your site returns to normal. TODO: enable all
        functionality. (For now just do UPDATE system SET status = 1;)
      - removed $themes from conf.php.
      - added a $theme->system() function where theme can specify settings.
        All themes in the Drupal CVS have been updated to use this.
      - added _system hook to modules. TODO: update modules to use this.
      - changed strange use of sprintf to the usual strtr. The disadvantage of
        sprintf is that it requires translations to keep the string order,
        which may not be possible in all languages.
      - an invalid/nonexisting theme in a user profile will now fallback to the
        BaseTheme instead of crashing.
      55927616
  26. Jan 30, 2002
    • Dries Buytaert's avatar
      · d988dae6
      Dries Buytaert authored
      - Applied Natrak's module improvements.
      d988dae6
  27. Jan 13, 2002
  28. Jan 09, 2002
    • Kjartan Mannes's avatar
      Session · 3b5c3806
      Kjartan Mannes authored
       - attempted to fixed crashes with the custom session handler.
      
      External SMTP library
       - added functionality to have Drupal not use the default PHP mail()
         function. For more info see: http://www.drupal.org/node.php?id=44
         Note: for this to work all modules that send mails should use the
         Drupal function to send mail:
           user_mail($mail, $subject, $message, $header);
      
      Calendar
       - added an archive page which users can use to find archives instead of
         the good old block.
      
      Miscellaneous
       - fixed a "random" offset bug on module.inc that occurred on Windows.
      
      All of this needs more testing, and further suggestions are welcome.
      3b5c3806
  29. Nov 05, 2001
    • Dries Buytaert's avatar
      · db47bac3
      Dries Buytaert authored
      - node.module:
      
         + Changed node_form() to use good ol' tables instead of div/CSS-tags.
      
         + Revised the "revision API": I think we have both an easy and powerful
           API now that should make everyone happy.
      
         + Improved the usability of the rollback functionality a bit.
      
         + Removed the "view node" link from the "node overview" page in the
           admin section and added a "delete node" link instead.
      
         + Added a few missing translations; there might be missing more
           translations though.
      
      - book.module:
      
         + Made the book module use the "revision API" instead of having it poke
           and use the innards and underlying details of the revision system.
      
      - queue.module:
      
         + Made the queue module use the improved revision number.
      
      - module.inc:
         + Applied Moshe's patch: added more arguments to module_invoke()
      
      - mail-to-sql.pl:
         + Added support for more header fields and for folded fields
      
      Notes:
      
      - no database updates required
      db47bac3
  30. Nov 01, 2001
    • Dries Buytaert's avatar
      · 336b713a
      Dries Buytaert authored
      - A large batch of updates, amongst them a rewritten node system.  More
        information available on the mailing list.
      336b713a
  31. Oct 20, 2001
  32. Oct 16, 2001
    • Dries Buytaert's avatar
      · 33a3502d
      Dries Buytaert authored
      - Removed a node's link ID (lid) as discussed on the mailing list.  See
        'updates/3.00-to.x.xx.mysql' for the required MySQL updates.
      
      - Renamed some "author" fields to "uid" fields for sake of consistency.
      
      - Fixed the coding style of some PHP files.
      
      - Fixed the moderation queue (fairly untested though).
      
      - Re-introduced the temporary SQL table in _node_get().
      
      - Added a missing 'auto_increment' to 'updates/3.00-to-x.xx.mysql'.
      33a3502d
  33. Oct 09, 2001
    • Dries Buytaert's avatar
      · f1932821
      Dries Buytaert authored
      - PEAR-ification of Drupal by claw: you can now host Drupal on a wide
        range of databases including MySQL, PostgreSQL, MSSQL, and others.
      
        For additional information and an 'how to upgrade', check the mails
        sent to the mailing list.
      f1932821
  34. Aug 23, 2001
  35. Jul 15, 2001
    • Dries Buytaert's avatar
      · af7d8ebe
      Dries Buytaert authored
      - Various updates, mostly related to our RDF/RSS backend.
      af7d8ebe
  36. Jul 14, 2001
    • Dries Buytaert's avatar
      · b99d4d7a
      Dries Buytaert authored
      - theme system:
          + added $theme->images()
      
      - blog.module:
          + improved user-friendliness and rewrote most of the output routines
          + made quoted text /italic/ by default
          + integrated discussion system like it should
          + ...
      
      - marvin.theme:
          + small visual improvements
      b99d4d7a
  37. Jul 03, 2001
    • Dries Buytaert's avatar
      · 6a21940c
      Dries Buytaert authored
      - common.inc:
         + Made '$na' translatable on popular demand.
      
      - node.module:
         + replaced a confusing configuration description, as suggested by
           Remco.
      
      - statistics.module:
         + Added a 'most recent referers'-table sorted by timestamp.
      
      - drupal.module:
         + Small update of the links.
      6a21940c
  38. Jun 29, 2001
    • Dries Buytaert's avatar
      · 9c43e8fc
      Dries Buytaert authored
      Extremely large commit:
      
      - Fixed tiny quote problem in account.php.
      
      - Fixed tiny bug in comment.inc.
      
      - Fixed tiny bug in comment.module.
      
      - Fixed tiny bug in meta.module.
      
      - Simplified user_access() API.
      
      - Rewrote link system: still needs fine-tuning and testing so don't
        upgrade if you are running a production site. ;)
      
        Updated all modules and themes to reflect this change.  All other
        themes and modules need updating too!
      9c43e8fc
  39. May 29, 2001
    • Dries Buytaert's avatar
      · 1a888395
      Dries Buytaert authored
      - Removed a few lines of dead code.
      1a888395
  40. May 20, 2001
    • Dries Buytaert's avatar
      CHANGES · 20397ad3
      Dries Buytaert authored
      - Redid settings.module and even renamed it to conf.module.
          * Settings are now grouped in basic categories like "system
            settings", "module settings" and "filters".
        * Added new settings to make Drupal easier to configure and
        to make some aspects like the watchdog scale better.
      
      - Renamed includes/settings.php to includes/conf.php.
      
      - Added filter support to conf.module and introduced filter hooks so
        modules can implement and export new filters.  Example filters are
        an HTML filter (implemented), a profanity filter, an url converter,
        ASCII smileys to images filter and so on ...
      
      - Reworked the check_* functions: user contributed content/input is
        only verified and filtered once in its lifespan.
      
      NOTES
      
      - Altough this is a large commit, no database changes are required.
      20397ad3