Skip to content
  1. Jun 20, 2003
    • Dries Buytaert's avatar
      · e57faf21
      Dries Buytaert authored
      - Bugfix: fixed problem with changing themes.  Didn't apply Al's patch as
        the fix was somewhat simpler.  Fixes bug #2003.
      
      - Bugfix: fixed problem with voting on certain poll pages.  Patch #37 by Al.
      
      - Improvement: removed stupid descriptions from profile module.
      e57faf21
  2. Jun 17, 2003
    • Dries Buytaert's avatar
      · 7a8a99d4
      Dries Buytaert authored
      - Bugfix: corrected typo in the poll module.  Patch by Al.
      7a8a99d4
  3. Jun 15, 2003
    • Dries Buytaert's avatar
      · eb030cb9
      Dries Buytaert authored
      - Improvements: XHTML-ifications.  Patch by GmbH.
      eb030cb9
  4. Jun 11, 2003
    • Dries Buytaert's avatar
      · 3b8c99d9
      Dries Buytaert authored
      - Bugfix: fixed the CREATE FUNCTION in database.mssql as it needs to be prefixed with GO for some obscure reason.  Patch by Kjartan.
      
      - Bugfix: fixed the defaults for blocks in database.mssql so the NOT NULL fields get values.  Patch by Kjartan.
      
      - Bugfix: changed check_form() to use htmlspecialchars() instead of drupal_specialchars() as this caused Drupal to emit incorrect form items in presence of quotes.  Example:
      
        <input type="submit" class="form-submit" name="op" value="Submit "top nodes" block changes" />
      
        IMO, drupal_specialchars() is better called xmlspecialchars() to avoid confusion.
      
      - Bugfix: when an anonymous user visits a site, they shouldn't see any content (except the login block, if it is enabled) unless they have the "access content" permissions.  Patch by Matt Westgate.
      
      - Improvement: improved the error checking and the error messages in the profile module.  Updated the code to match the Drupal coding conventions.  Modified patch from Matt Westgate.
      
      - Improvement: don't generate the <base href=""> tag in the base theme; it is already emitted by theme_head().  Patch by Kristjan.
      
      - Improvement: don't execute any SQL queries when checking the permissions of user #1.  Patch by Kjartan.
      
      - Improvement: made a scalable layout form that works in IE and that behaves better with narrow themes.  Part of patch #51 by Al.
      
      - Improvement: removed some redundant print statements from the comment module.  Modified patch from Craig Courtney.
      3b8c99d9
  5. Jun 06, 2003
    • Dries Buytaert's avatar
      · 2719ebde
      Dries Buytaert authored
      - Bugfix: fixed problem when register globals is turned off.  Patch 0037.poll.register_globals.patch by Al.
      
        (Can't we make the result URL look nicer?)
      2719ebde
  6. 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
  7. 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
  8. May 30, 2003
    • Dries Buytaert's avatar
      · 34b51897
      Dries Buytaert authored
      - Better CSS for the poll module.
      34b51897
  9. 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
  10. May 24, 2003
    • Dries Buytaert's avatar
      · 45d5aad6
      Dries Buytaert authored
      - Updated Drupal to use "on output" filters.  Derived from Gerhard's patch.
      45d5aad6
  11. May 19, 2003
    • Dries Buytaert's avatar
      · e99d4222
      Dries Buytaert authored
      - Fixed register_globals issue.  Patch by Michael.
      e99d4222
  12. 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
  13. 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
  14. Apr 21, 2003
    • Dries Buytaert's avatar
      · a956de78
      Dries Buytaert authored
      - Fixed some PHP "notices".
      a956de78
  15. Apr 14, 2003
    • Dries Buytaert's avatar
      A batch of changes: · 70f5b864
      Dries Buytaert authored
      - Renamed '---' to '<!--break-->'.
      
      - Removed hard-coded call to the statistics module from the node module.
        Patch by Gerhard.
      
      - Removed tables from poll module.  Modified patch by Al.  Changes to Al's
        patch are:
          "polltext" -> "poll-text"
          "pollfg"   -> "poll-foreground"
          "pollbg"   -> "poll-background"
      
      - Changed some 'statistics.foo's to 's.foo's.  Patch by Gary.
      
      [If this closes any bug reports, please update them on drupal.org.]
      70f5b864
  16. Mar 27, 2003
  17. 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
  18. Feb 15, 2003
    • Dries Buytaert's avatar
      · 83f5d828
      Dries Buytaert authored
      - Everything is using theme("function") now instead of $theme->function().
      83f5d828
  19. Feb 11, 2003
  20. Jan 23, 2003
  21. Jan 21, 2003
    • Dries Buytaert's avatar
      · 9a23223e
      Dries Buytaert authored
      - Applied Ori's format_plural() patch; see mailing list for details.
      
        NOTE: some modules in the contributions repository might need to be updated.
      9a23223e
  22. Jan 06, 2003
    • Dries Buytaert's avatar
      · 89b2069e
      Dries Buytaert authored
      - Clean URL patch.
      89b2069e
  23. 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
  24. Nov 03, 2002
    • Dries Buytaert's avatar
      · 0fa133dd
      Dries Buytaert authored
      - Added missing filter.  Patch by Marco.
      0fa133dd
  25. 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
  26. Oct 22, 2002
    • Dries Buytaert's avatar
      · 66c5b707
      Dries Buytaert authored
      - Wrapped some hardcoded colors in "theme_invoke()"s; we can still create
        a drupal_error() later on but I think we better get used to theme_invoke().
      
      - Fixed translation bug.  Patch by Moshe.
      
      - Fixed PHP warning.  Patch by ax.
      66c5b707
  27. Oct 18, 2002
    • Dries Buytaert's avatar
      · 30447b05
      Dries Buytaert authored
      - Applied Marco's poll.module patch.
      30447b05
  28. Oct 15, 2002
  29. Aug 26, 2002
    • Dries Buytaert's avatar
      · 58c99266
      Dries Buytaert authored
      - Another "SELECT... LEFT JOIN... GROUP BY... ORDER BY" by James.
      58c99266
  30. Jun 12, 2002
  31. Jun 09, 2002
    • Dries Buytaert's avatar
      · 10f808b3
      Dries Buytaert authored
      - Updated the poll documentation.  Patch by Scott.
      10f808b3
  32. Jun 08, 2002
    • Kjartan Mannes's avatar
      - improved module descriptions. · 5d36c704
      Kjartan Mannes authored
      - removed admin options for queue and comment module if the modules are not
        loaded.
      - nodes are now auto promoted when queue module isn't enabled.
      - moderation result block is now visible by the node author.
      5d36c704
  33. Jun 04, 2002
    • Steven Wittens's avatar
      Poll.module improvements: · 8be5a254
      Steven Wittens authored
      - Added links to see poll results when you haven't voted yet (and to go back).
      - Cleaned up code and moved large sections into separate functions for cleaner code
      - Cleaned up the way of distinguishing between multiple polls on one page (now it just uses the nid)
      8be5a254
  34. Jun 01, 2002