Skip to content
  1. Mar 12, 2004
  2. Jul 10, 2003
    • Dries Buytaert's avatar
      · 337b3c9d
      Dries Buytaert authored
      - Committed a slightly modified version of Slavica's table prefix patch.
      337b3c9d
  3. Mar 16, 2003
    • Dries Buytaert's avatar
      · 170b674a
      Dries Buytaert authored
      - All LIMIT queries must go through the pager or through db_query_range().
        The syntax for db_query_range() was enhanced so it matches db_query(). So
        you may pass extra arguments of the SQL statement which are checked via
        check_query() and then substituted into the SQL statement. After these
        optional arguments, you always pass $from and $count parameters which
        define your range.  Most often, the $from is 0 and the count is the max
        number of records you want returned.  Patch by Moshe.
      
      - The pager_query() function for PEAR was enhanced so that it adds  proper
        GROUP BY statement counting the number of records to be paged. Patch by
        James Arthur.
      
      - MSSQL database scheme by Moshe.
      170b674a
  4. 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
  5. Feb 15, 2003
    • Dries Buytaert's avatar
      · 8f190d13
      Dries Buytaert authored
      - Documented the fact that the $base_url should not have a trailing slash.
        Requested by Kjartan.
      
      - Fixed at least 3 typos.
      8f190d13
  6. Feb 14, 2003
  7. Jan 06, 2003
    • Dries Buytaert's avatar
      · 89b2069e
      Dries Buytaert authored
      - Clean URL patch.
      89b2069e
  8. Dec 20, 2002
    • Dries Buytaert's avatar
      · 20e22ad2
      Dries Buytaert authored
      - Removed some backslashes.  Reported by Adam.
      20e22ad2
  9. Dec 10, 2002
    • Dries Buytaert's avatar
      · 7ce686c1
      Dries Buytaert authored
      o Permission improvements:
      
         + Removed the "post content" permission and replaced it by more fine-grained permissions such as "maintain static pages", "maintain personal blog", "maintain stories", etc.
      
      o Usability improvements to teasers:
      
         + Teaser forms are no more.  Teasers are extracted automatically but can also be instructed using a delimiter "---".  Furthermore, when a post it too short for a teaser, the user won't be bother with teaser stuff anymore.
      
         + Added an option to set the teaser length, or to disable teasers all together.
      
         + When previewing a post, both the short (if any) and the full version of a post are shown.  This addresses a common complaint; for example, when writing a book page there was no way you could preview the short version of your post.
      
         + Forum posts can be teasered now.  This is particularly helpful in the context of drupal.org where we promote forum topics.
      
      o Bugfix: replaced all PHP short tags (<?) with long tags (<?php).
      
      o Bugfix: removed hard-coded dependence on comment module.
      
      o Bugfix: when the queue module was disabled, it was not possible to approve updated book pages.
      
      o Bugfix: applied modified version of Marco's node_teaser() fix.
      7ce686c1
  10. Dec 08, 2002
    • Dries Buytaert's avatar
      · 296a01f3
      Dries Buytaert authored
      - Made sure session.cache_limiter is set to "none" as suggested by Moshe
        and Ax.
      296a01f3
  11. Dec 07, 2002
    • Dries Buytaert's avatar
      · 7c187f89
      Dries Buytaert authored
      - Added "short_open_tag 1" to the PHP settings.
      7c187f89
  12. Dec 02, 2002
    • Dries Buytaert's avatar
      · 8a91f1be
      Dries Buytaert authored
      - Added some extra information about PHP settings.
      8a91f1be
  13. Nov 26, 2002
    • Dries Buytaert's avatar
      · 4a723b90
      Dries Buytaert authored
      - Added some comments/explanation wrt to the "$db_url" settings; this seemed
        to cause problems/confusion.
      4a723b90
  14. 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
  15. 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
  16. Feb 19, 2002
    • Dries Buytaert's avatar
      · d0761b86
      Dries Buytaert authored
      - Removed theme Trillian from the $themes-array.
      d0761b86
  17. Dec 24, 2001
  18. 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
  19. Oct 23, 2001
    • Dries Buytaert's avatar
      · eb2a3f3f
      Dries Buytaert authored
      - Added an ini_set(...) to conf.php to solve history/cache browsing issues
        on some Drupal/PHP installations.
      eb2a3f3f
  20. Oct 20, 2001
  21. 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
  22. Oct 07, 2001
    • Dries Buytaert's avatar
      · 47c6fce5
      Dries Buytaert authored
      - added a comment() function to the base theme: you don't have to overload
        it in your custom themes
      
      - moved 'theme_account()' to the base theme as '$theme->user()' so that it
        can be themed.
      47c6fce5
  23. Sep 28, 2001
    • Dries Buytaert's avatar
      · 5e6549f1
      Dries Buytaert authored
      - removed the themes that are not actively maintained ...
      5e6549f1
  24. Sep 27, 2001
    • Dries Buytaert's avatar
      · 4a0e498f
      Dries Buytaert authored
      - a batch of updates, including some experimental changes to the moderation
        of comments and nodes.
      4a0e498f
  25. Sep 16, 2001
    • Dries Buytaert's avatar
      · 2d1e9126
      Dries Buytaert authored
      - Added the new user module!
      2d1e9126
  26. Aug 21, 2001
    • Dries Buytaert's avatar
      · a3ff3194
      Dries Buytaert authored
      - Removed the confusing comment as suggested by Jared.
      a3ff3194
  27. Jun 07, 2001
  28. 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
  29. May 16, 2001
  30. May 15, 2001
    • Dries Buytaert's avatar
      · 14ddbc47
      Dries Buytaert authored
      - Created 2 new functions:
          + path_uri(): returns the fully-qualified URI of your drupal site.
          + path_img(): returns the image directory or http://image-server.com/
                        in case you prefer to load-balance bandwidth usage.
      
        Replaced all occurences of the variable "site_url" with path_uri()
        and removed "site_url" from "setting.module".
      
      - Drastically simplified the node_save() API, which should make the
        node-forms more secure.  Updated "story.module", "book.module",
        "forum.module", "page.module" and "node.module" to reflect this
        change.  This is needs more testing so hit it, beat it, tease it.
      
      - Fixed an occasional glitch in the configuration file loading logic.
      
      - Made "queue.module" display an informative notice when an anonymous
        user tries accessing the moderation queue.
      
      - Updated the hard-coded information in drupal.module a bit.
      14ddbc47
  31. May 14, 2001
    • Dries Buytaert's avatar
      · bb3ccea5
      Dries Buytaert authored
      - Fixed typo: "$language" should have been "$languages".
      bb3ccea5
    • Dries Buytaert's avatar
      · e22f1042
      Dries Buytaert authored
      - Renamed "hostname.conf" to "setting.php" (cfr. "setting.module").
        Note that - when upgrading - you have to rename all your existing
        configuration files to reflect this change:
      
           yourdomain.com.conf -> yourdomain.com.php
      
        By default, i.e. if no configuration file is found, setting.php
        will be used instead.  Using the ".php"-extension will fix most
        configuration/security issues with .htaccess-files ...
      
      - Removed some dead code from forum.module.
      e22f1042
  32. Apr 27, 2001
    • natrak's avatar
      CHANGES · 4f6b2151
      natrak authored
      - Modified conf_init() to use default.conf if nothing else can be found.
      - Added some comments to hostname.conf to reflect the changes and
        provide more information on how to rename the file.
      
      TODO
      - The Drupal handbook should be updated once the CVS version is released.
      - Should try to remove the remainder of info from hostname.conf and go for a
        completely web-based administration if possible.
      - Does having all the settings in a SQL database make Drupal add more
        overhead than including a .conf file? If nobody knows for sure some tests
        should be done. If yes, concider having the admin interface generate an
        include file in addition to saving to the database.
      4f6b2151
  33. Apr 06, 2001
    • Dries Buytaert's avatar
      · 8213f5b2
      Dries Buytaert authored
      A lot of small changes (search-n-replace) make a big commit:
      
        - fixed update bug in book.module
        - provide a log message when both adding and updating book pages
        - all configurable variables are now accessed through "variable_get()":
        - rewrote watchdog and submission throttle and removed watchdog.inc
        - improved robustness of sections.inc
        - imporved story.module
        - updated ./database/database.sql
      8213f5b2
  34. Apr 05, 2001
    • Dries Buytaert's avatar
      · 048664f2
      Dries Buytaert authored
      - a bunch of various updates
      048664f2
  35. Mar 31, 2001
    • Dries Buytaert's avatar
      · 03e51647
      Dries Buytaert authored
      - fixed typo in hostname.conf
      03e51647
  36. Mar 28, 2001
    • Dries Buytaert's avatar
      · 3f2b0e0b
      Dries Buytaert authored
      Flushing my backlog (in case Natrak wants to make more changes):
      
       - tidied up some of the code
       - fixed a small problems
      3f2b0e0b
  37. Mar 26, 2001
    • Dries Buytaert's avatar
      · cb5bbdee
      Dries Buytaert authored
      - small improvements as well as 2 bugfixes
      cb5bbdee
  38. Mar 25, 2001
    • Dries Buytaert's avatar
      · 5fb307f5
      Dries Buytaert authored
      - refactoring, refactoring, refactoring
      5fb307f5
    • Dries Buytaert's avatar
      · 1f798630
      Dries Buytaert authored
      - large commit of everything else that has been queued in my backlog:
        it's not 100% stable yet
      1f798630