Skip to content
  1. Jul 08, 2003
    • Dries Buytaert's avatar
      · f294f5e5
      Dries Buytaert authored
      - Fixed a number of translation issues.  Patches by Stefan.
      f294f5e5
  2. Jul 02, 2003
  3. Jun 15, 2003
    • Dries Buytaert's avatar
      · eb030cb9
      Dries Buytaert authored
      - Improvements: XHTML-ifications.  Patch by GmbH.
      eb030cb9
  4. Jun 12, 2003
    • Dries Buytaert's avatar
      · 1a257603
      Dries Buytaert authored
      - Bugfix: charset fixes/clean-up.  Patch #52 by Al.
      
      - Improvement: renamed some theme functions of the forum module for sake of consistency/readability.  Patch #2 by Kristjan.
      
      - Improvement: usability improvements to the Xtemplate theme.  Patch #3 by Kristjan.
      
      - Improvement: CSS'ified the book module pages.  Patch #3 by Al.  (I simplified the "l
      ocation" part.  Al's approach gave you a bit more power but I'm not sure anyone wants
      to change that.  Besides, this will change as soon we integrate the menu system so I kept it easy for now.)
      1a257603
  5. 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
  6. Jun 08, 2003
    • Dries Buytaert's avatar
      · 49ebc543
      Dries Buytaert authored
      - Fixed various forum module queries such that they work with PostgreSQL.
      49ebc543
  7. Jun 06, 2003
    • Dries Buytaert's avatar
      · 1e7ef0cf
      Dries Buytaert authored
      - WOOOT!  Patch by Al.
      1e7ef0cf
  8. Jun 05, 2003
    • Dries Buytaert's avatar
      · de3b0796
      Dries Buytaert authored
      - Bugfix: better charset support for non-ISO-8859-1 languages.  Patch 0029.charset.fixes.patch by Al.  Could East Asia test this please.
      
      - Bugfix: made the "moderate" field behave.  Patch 0030.queue.module.help.and.settings.form.patch by Al.
      
      - Documentation: revised a large part of the help texts / documentation!  Al's 0024.* patches.
      
      - Documentation: added a glossary to the help module.  Patch 0025.help.module.glossary.patch by Al and Michael.
      
      - Usability: first step towards unifying the terminology used in the cloud module.  Patch by 0028.site.cloud.rationalize.name.patch Al.
      
      - Usability + CSS improvements: revamped the node form and removed all tables.  Patch 0027.node.form.rewrite.patch by Al.
      
      - CSS improvements: patch 0026.admin.css.small.improvement.patch by Al.
      
      - Updated the MAINTAINERS file.
      de3b0796
  9. Jun 04, 2003
    • Dries Buytaert's avatar
      · 355d25e7
      Dries Buytaert authored
      - Bugfix: renamed the SQL field 'types' to 'nodes' because 'types' is a reserved keyword in MySQL 4.  This fixes critical bug #1618.  Patch by Marco.
      
        ==> This fix requires to run update.php!
      
      - Bugfix: made sessions work without warnings when register_globals is turned off. The solution is to use $_SESSION instead of session_register().  This fixes critical bug #1797.  Patch by Marco.
      
      - Bugfix: sometimes error messages where being discarded when previewing a node.  Patch by Craig Courtney.
      
      - Bugfix: fixed charset problems.  This fixes critical bug #1549.  Patch '0023.charset.patch' by Al.
      
      - Code improvements: removed some dead code from the comment module.  Patch by Marco.
      
      - Documentation improvements: polished the node module help texts and form descriptions.  Patch '0019.node.module.help.patch' by Al.
      
      - CSS improvements all over the map!  Patch '0021.more.css.patch' by Al.
      
      - GUI improvements: improved the position of Druplicon in the admin menu.  Patch '0020.admin.logo.patch' by Al.
      
      - GUI improvements: new logos for theme Marvin and theme UnConeD.  Logos by Kristjan Jansen.
      
      - GUI improvements: small changes to the output emitted by the profile module.  Suggestions by Steven Wittens.
      
      - GUI improvements: small fixes to Xtemplate.  Patch '0022.xtemplate.css.patch' by Al.
      
      TODO:
      
      - Some modules such as the buddy list module and the annotation module in the contributions repository are also using session_register().  They should be updated.  We should setup a task on Drupal.
      
      - There is code emitting '<div align="right">' which doesn't validate.
      
      - Does our XML feeds validate with the charset changes?
      
      - The forum module's SQL doesn't work properly on PostgreSQL.
      355d25e7
  10. May 31, 2003
    • Dries Buytaert's avatar
      · 9b82630e
      Dries Buytaert authored
      - Bugfix: the forum module's "view" function should also call check_output().
      9b82630e
  11. May 29, 2003
    • Dries Buytaert's avatar
      · 1fc8a18c
      Dries Buytaert authored
      - Al's CSS patches.  This commit improves the themability of some core
        components such as lists, form items, removes an ugly hack from the
        archive module and should fix the poll problem (although it doesn't
        Opera/Konqueror).
      1fc8a18c
    • Dries Buytaert's avatar
      · 8d2b1238
      Dries Buytaert authored
      - Michael Frankowski's excellent help text improvements!
      8d2b1238
  12. May 24, 2003
    • Dries Buytaert's avatar
      · 45d5aad6
      Dries Buytaert authored
      - Updated Drupal to use "on output" filters.  Derived from Gerhard's patch.
      45d5aad6
  13. 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
  14. 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
  15. Apr 21, 2003
    • Dries Buytaert's avatar
      · a956de78
      Dries Buytaert authored
      - Fixed some PHP "notices".
      a956de78
  16. Apr 04, 2003
  17. Mar 25, 2003
    • Dries Buytaert's avatar
      · 3c1d5b9f
      Dries Buytaert authored
      - Added missing title description.  Patch by Stefan.
      3c1d5b9f
  18. 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
  19. Mar 12, 2003
    • Dries Buytaert's avatar
      · e1cd7e08
      Dries Buytaert authored
      - The name of a forum node is a "forum topic", not a "discussion forum".
      e1cd7e08
  20. Mar 09, 2003
  21. Mar 07, 2003
    • Kjartan Mannes's avatar
      - Renamed "form.admin" to "form admin". · 831ee213
      Kjartan Mannes authored
      - Added node_admin_settings() to let users set node defaults.
          * Added _nodeapi("conf")
      - Modified form_checkbox() to unset options. (Modified the patch from Ax.)
      - Removed the _save() hook.
      - Fixed a logical flaw in field_get() and field_set() which would break
        moderation.
      - Moved some admin menus around and cleaned up some typos.
      831ee213
  22. Mar 04, 2003
    • Dries Buytaert's avatar
      · cf2802a7
      Dries Buytaert authored
      - Fixed typo: $node->tid -> $node->tid[].
      cf2802a7
  23. Feb 17, 2003
    • Dries Buytaert's avatar
      · 52314ddc
      Dries Buytaert authored
      - Theme options patch.  See mailing list.
      52314ddc
  24. Feb 15, 2003
    • Dries Buytaert's avatar
      · 83f5d828
      Dries Buytaert authored
      - Everything is using theme("function") now instead of $theme->function().
      83f5d828
  25. Feb 11, 2003
  26. Feb 02, 2003
    • Dries Buytaert's avatar
      · 6fcadb8e
      Dries Buytaert authored
      - Made it possible to print forum submission guidelines.  Patch by Moshe.
      6fcadb8e
  27. Jan 23, 2003
  28. Jan 15, 2003
    • Dries Buytaert's avatar
      Patch by Marco: · f6da12ca
      Dries Buytaert authored
      - forum: fixed link to new topic
      - forum: new topic shows default forum correctly
      - forum: first_new is back; the anchor didn't consider multiple pages
      - forum: use standard pager, needed some changes/fixes to pager.inc
      - forum: some cleanup
      - forum: taxonomy hook
      - renamed first_new to simply new
      - added an optional parameter to pager_query for the count query
      - used the optional count param for paging forum topics
      - internal change: moving a topic doesn't duplicate the node anymore but just
        changes the forum (term); no change in functionality, and shadow still
        works (suggested by Dries).  This probably also made some queries somewhat
        lighter.
      - bug fixed: anonymous users always saw "n (n new)" in the replies column
      - updated pager help and moved from _help to phpdoc
      f6da12ca
  29. Jan 08, 2003
    • Dries Buytaert's avatar
      · 22c3f055
      Dries Buytaert authored
      - Bugfix: fixed the SQL query in _forum_topics_read to avoid counting shadowed
        topics in forums.  Patch by David.
      22c3f055
  30. Jan 06, 2003
    • Dries Buytaert's avatar
      · 89b2069e
      Dries Buytaert authored
      - Clean URL patch.
      89b2069e
  31. Jan 02, 2003
    • Dries Buytaert's avatar
      · 408bf86a
      Dries Buytaert authored
      - Usability improvement; the drop-down menu showed the first vocabulary in
        the list even though it has not been selected.  Reported by Adam Shand.
      408bf86a
  32. 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
  33. Dec 30, 2002
    • Dries Buytaert's avatar
      · cc01e613
      Dries Buytaert authored
      - Bugfix: user_save() should not be called for anonymous users.  Patch by
        Marco.
      cc01e613
  34. Dec 21, 2002
    • Dries Buytaert's avatar
      · d21ba6b0
      Dries Buytaert authored
      - Fixed glitch with the "leave shadow" option.
      d21ba6b0
  35. Dec 18, 2002
    • Dries Buytaert's avatar
      · 623aaed1
      Dries Buytaert authored
      - Made sure the taxonomy module doesn't display warning/error messages
        when the taxonomy module is disabled.  Reported by kyvinh.
      
      - Improved forum documentation.  Modified version of Kjartan's patch.
      
      TODO:
      
      - Updating a forum topic through the admin interface, results in a
        duplicate (and incomplete) forum topic.  Also note that "Leave
        shadow?" function is annoying; the status of the checkbox is lost
        when clicking preview.  Also, I think it should be disabled be
        default.
      623aaed1
  36. Dec 15, 2002
  37. Dec 14, 2002
    • Dries Buytaert's avatar
      · ad80f143
      Dries Buytaert authored
      - Fixed bug related to recent cache changes.
      ad80f143
  38. Dec 11, 2002
    • Dries Buytaert's avatar
      · b6b24c28
      Dries Buytaert authored
      Applied patch by Natrak:
      
      - page_header() now adds Last-Modified and ETag http headers.
      - When running PHP as an Apache module page_header() will check the HTTP
        headers for conditional gets, and will only push the content when it
        fails. (Works for html and xml pages as they are all cached). Note:
        this is a PHP limitation, so until PHP makes it work for other web
        servers this won't work for them.
      - Added created field to cache database to hold the timestamp when the
        cache was created.
      - Changed cache_get() to return an object with ->data and ->created.
      - Update forum and locale modules.
      b6b24c28