Skip to content
  1. May 20, 2002
    • Kjartan Mannes's avatar
      - tweaked password changes. · 367ae7a6
      Kjartan Mannes authored
      - changed the meta -> taxo to append terms instead of overwriting.
      - added more warnings to file.
      367ae7a6
    • Dries Buytaert's avatar
      · f3c87571
      Dries Buytaert authored
      - Ran the code through 'scripts/code-clean.sh': removed trailing whitespace
        (and possibly tabs).
      f3c87571
  2. May 19, 2002
  3. May 17, 2002
  4. May 16, 2002
  5. May 15, 2002
  6. May 13, 2002
  7. May 11, 2002
  8. May 02, 2002
  9. May 01, 2002
  10. Apr 29, 2002
  11. Apr 28, 2002
  12. Apr 27, 2002
  13. Apr 20, 2002
  14. Apr 17, 2002
  15. 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
    • Kjartan Mannes's avatar
      - modified the SQL update to lowercase all user theme settings to let them · 6c0db2de
      Kjartan Mannes authored
        keep their settings.
      - Change author fields in marvin and example theme. Dries is picky about his
        name ;)
      6c0db2de
    • 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
  16. Apr 08, 2002
    • Dries Buytaert's avatar
      · 5d9a8e34
      Dries Buytaert authored
      - Made the cloud module a lot more configurable: both the update interval
        and the number of bytes required for an update, can be changed now.
      5d9a8e34
  17. Mar 05, 2002
    • Kjartan Mannes's avatar
      - more typo bugs. · 1fe8d6b1
      Kjartan Mannes authored
      1fe8d6b1
    • 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
  18. Feb 19, 2002
    • Dries Buytaert's avatar
      · 3c8de3e9
      Dries Buytaert authored
      - Changed the size of the data-field in the cache table.
      3c8de3e9
  19. Jan 31, 2002
  20. Jan 27, 2002
  21. Jan 17, 2002
    • Dries Buytaert's avatar
      · 0683331a
      Dries Buytaert authored
      - Added an 'data' column to the user table.
      0683331a
  22. Jan 05, 2002
    • Dries Buytaert's avatar
      · 58152c45
      Dries Buytaert authored
      Integrated Marco's generic/improved cache into Drupal.  Requires an
      SQL update.  See below for more details.
      
      - Merged the file "cache.inc" into "common.inc".
      
      - In addition, I renamed the field 'url' in the cache table to
        a more generic 'cid' (cache identifier).  It's no longer for
        URLs only.
      
      - Made the "cache_set()" function ASNI compliant such that it
        will play nice with other databases such as Postgres.
      
      - Added some extra input checking.
      
      - Updated the old caching code in the functions "page_header()"
        and "page_footer()" to use the new, generic cache API.
      
      - Updated "update.php" to make the required SQL changes.
      58152c45
  23. Dec 31, 2001
    • Dries Buytaert's avatar
      · d85e45bf
      Dries Buytaert authored
      - Added "x new comments" feature.  Requires a SQL update.
      
      - Tidied up some comment related code in node.module.
      d85e45bf
  24. Dec 30, 2001
    • Dries Buytaert's avatar
      · a95c2a68
      Dries Buytaert authored
      - import.module:
      
          + Improved input filtering; this should make the news items look
            more consistent in terms of mark-up.
      
          + Quoted all array indices: converted all instances of $foo[bar]
            to $foo["bar"].  Made various other changes to make the import
            module compliant with the coding style.
      
      - theme.inc:
      
          + Fixed small XHTML glitch
      
      - comment system:
      
          + Made it possible for users to edit their comments (when certain
            criteria are matched).
      
          + Renamed the SQL table field "lid" to "nid" and updated the code
            to reflect this change: this is a rather /annoying/ change that
            has been asked for a few times.  It will impact the contributed
            BBS/forum modules and requires a tiny SQL update:
      
              sql> ALTER TABLE comments CHANGE lid nid int(10) NOT NULL;
      
          + Moved most (all?) of the comment related logic from node.php to
            comment.module where it belongs.  This also marks a first step
            towards removing/reducing "node.php".
      
          + Added a delete button to the comment admin form and made it so
            that Drupal prompts for confirmation prior to deleting a comment
            from the database.  This behavior is similar to that of deleting
            nodes.
      
          + Disabled comment moderation for now.
      
          + Some of the above changes will make it easier to integrate the
            upcomcing mail-to-web and web-to-mail gateways.  They are part
            of a bigger plan.  ;)
      
      - node system:
      
          + Made it so that updating nodes (like for instance updating blog
            entries) won't trigger the submission rate throttle.
      
          + Fixed a small glitch where a node's title wasn't always passed
            to the $theme->header() function.
      
          + Made "node_array()" and "node_object()" more generic and named
            them "object2array()" and "array2object()".
      
          + Moved most (all?) of the comment related logic from node.php to
            comment.module where it belongs.  This also marks a first step
            towards removing/reducing "node.php".
      
      - misc:
      
          + Applied three patches by Foxen.  One to improve performance of
            the book module, and two other patches to fix small glitches in
            common.inc.  Thanks Foxen!
      a95c2a68
  25. Dec 24, 2001
    • Dries Buytaert's avatar
      · c5bb7c3e
      Dries Buytaert authored
      - Fixed a problem with the expiration of news items.  Requires a SQL
        update (update.php).
      c5bb7c3e
  26. Dec 16, 2001
    • Dries Buytaert's avatar
      · 780a345f
      Dries Buytaert authored
      - Added some explanation to the top of the file and fixed a braino.
      780a345f
    • Dries Buytaert's avatar
      · a0ddc1af
      Dries Buytaert authored
      - Added new feature.  Explanation will follow on the mailing list.
      a0ddc1af
  27. Dec 09, 2001
    • Dries Buytaert's avatar
      · 9da79bc8
      Dries Buytaert authored
      - Fixed a few feed glitched reported by Mark.
      - Dropped a few database tables that where no longer needed.
      9da79bc8
    • Dries Buytaert's avatar
      · e1f21d2b
      Dries Buytaert authored
      - Included the new documentation and renamed all "referer"s to
        "referrers" (including the SQL table name).  Thanks Greg.
      e1f21d2b
  28. Dec 06, 2001
    • Dries Buytaert's avatar
      · 20b4b716
      Dries Buytaert authored
      - book.module:
         + Added (1) support for "PHP pages" (dynamic pages), and (2) made
           it possible to link other node types into the book's tree/outline.
           It works just fine, yet the only (obvious) downside of (2) is
           that the navigation tree/links gets "interrupted" when you view
           non-book pages in the book.
             [SQL update required, see update.php]
      
         + Tidied up the book table.
             [SQL update required, see update.php]
      
      - various updates:
          + Fine-tuned the new node system.
          + Updated the inline/code documentation.
          + Improved teaser handling of all node types.
          + Made several small usability improvements to the node admin
            pages.
      20b4b716
  29. Dec 01, 2001
    • Dries Buytaert's avatar
      · 5ecedf72
      Dries Buytaert authored
      user.module:
        - Fixed the session support.  Requires a database update.
        - Applied a tiny optimization suggested by deekayen.
      5ecedf72
  30. Nov 17, 2001
    • Dries Buytaert's avatar
      · 6fd5a8d9
      Dries Buytaert authored
      - update.php: discovered and fixed a small thinko in update function #7.
      6fd5a8d9
    • Dries Buytaert's avatar
      · cd2df442
      Dries Buytaert authored
      - update.php:
      
          * added a new update method to create the authmap table, to move
            the old 'jabber' and 'drupal' field in the users table to this
            new authmap table, and to remove users and node left-overs.
      cd2df442