Skip to content
  1. Apr 15, 2004
  2. Feb 15, 2004
    • Dries Buytaert's avatar
      · 74229399
      Dries Buytaert authored
      - Patch 5834 by Jeremy: made multiple pagers on one page work.
      74229399
  3. Jan 06, 2004
  4. Dec 22, 2003
    • Dries Buytaert's avatar
      · 7883ea6e
      Dries Buytaert authored
      - Accessibility improvement: changed a <b>-tag to a <strong>-tag, used to
        indicated the current page.
      7883ea6e
  5. Dec 08, 2003
    • Dries Buytaert's avatar
      - Improvements by Goba: · 712a30b5
      Dries Buytaert authored
        + removes the lots of pagers and indirect pager themeing
        + add the theme_pager() function, which should be called as
          theme("pager", ...) to get a pager.
      712a30b5
    • Dries Buytaert's avatar
      · 3904790e
      Dries Buytaert authored
      - Tidied up the DoxyGen comments.  Patch by Kjartan.
      3904790e
  6. Nov 24, 2003
    • Dries Buytaert's avatar
      Patch by Ax to fixe and improve to the core doxygen PHPdoc: · 06045ff7
      Dries Buytaert authored
        * fixes all doxygen warnings [#]_ in the current code base
          + changes @param style from phpDocumentor (@param type $var desc) to doxygen (@param $var desc)
          + documents all undocumented parameters
          + escapes / fixes html warnings
          + fixes @defgroup in theme.inc
        * adds more groupings [#]_
          + drupal_{set|get}_title, drupal_{set|get}_breadcrumb
          + pager.inc: pager_api (pager_query(), pager_display()), pager pieces
        * adds a new group "themeable" which contains all themeable functions.
      06045ff7
  7. Nov 09, 2003
    • Dries Buytaert's avatar
      · 951b553a
      Dries Buytaert authored
      - Committed stage 2 of the theme system improvements!  Patch by CodeMonkeyX.
      951b553a
  8. 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
  9. Jun 03, 2003
    • Dries Buytaert's avatar
      - Bugfix: made request_uri() rewrite ( and ) with their entity equivalents · 05288ac4
      Dries Buytaert authored
      to avoid XSS attacks!  Patch by Al, Moshe, Marco, Kjartan and me.
      
      - Bugfix: the admin module does now import drupal.css prior to admin.css.
      Patch by me.
      
      - Bugfix: the admin module was still emitting a <base href=""> tag.  I
      removed this as it is been taken care of by theme_head();  Patch by me.
      
      - Bugfix: made the tracker module's pager only consider published pages.
      Patch by Moshe.
      
      - Bugfix: cured some typos in the comment module's help function.  Patch by
      Marco.
      
      - Bugfix: fixed a typo in the pager_display() that caused optional
      attributes to be discarded.
      
      - Bugfix: made the Xtemplate emit empty boxes like any other theme does.
      Patch by Al.
      
      - Bugfix: fixed broken link on the statistics module's log page.
      Reported by Kjartan.
      
      - CSS improvements: made the HTML output emitted by the tracker module
      look nicer.  Patch by Moshe and Al.
      
      - CSS improvements: added CSS classes for form elements.  Patch by Al.
      
      - CSS improvements: added a vertical gap between the last form item and the
      submit button.  Patch by Al.  Note that Opera 6 is not picking up this
      CSS but apparently others browsers such as Konqueror do.
      
      - Xtemplate improvements: changed the color of the selected day in the
      archive module's calendar.  Patch by Al.
      
      - Usability improvements: made the "birthday" field of the profile module
      look nicer.  Patch by Al.
      
      ------
      
      - TODO: it might be a good idea to emit the following meta tag in the
      theme_head() function:
      
      <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
      
      Currently, some themes (and modules!) emit this while others don't.  This
      would also make it possible to change the charset site-wide.
      
      - TODO: now we added support for td.dark and td.light to drupal.css, maybe
      it can be removed from admin.css as well as xtemplate.css?
      05288ac4
  10. May 23, 2003
  11. 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
  12. 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
  13. Mar 12, 2003
    • Dries Buytaert's avatar
      - Patch by Kjartan: · 53321baf
      Dries Buytaert authored
         + Pager is not generated when there are less results than the limit.
         + Fixes ugly blank rows in administration pages when there is just one
           page.
      53321baf
  14. Feb 11, 2003
  15. Jan 21, 2003
    • Dries Buytaert's avatar
      · 4dac201e
      Dries Buytaert authored
      - Patch by Ulf: XHTML-ified the code.
      4dac201e
  16. Jan 20, 2003
    • Dries Buytaert's avatar
      · 389dc008
      Dries Buytaert authored
      - Replaced "&" by "&amp;".  Patch by Ulf.
      389dc008
  17. 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
  18. Jan 09, 2003
    • Dries Buytaert's avatar
      · 6744e340
      Dries Buytaert authored
      - Fixed the pager.  It might not be 100% correct, but it will work in 95%
        of the cases.
      6744e340
  19. Jan 06, 2003
    • Dries Buytaert's avatar
      · 89b2069e
      Dries Buytaert authored
      - Clean URL patch.
      89b2069e
  20. Dec 14, 2002
    • Dries Buytaert's avatar
      · 99d84c93
      Dries Buytaert authored
      - Committed Marco's pager improvements.
      
      - Fixed another annoyance with editing content.
      99d84c93
  21. Nov 26, 2002
    • Dries Buytaert's avatar
      · 51778ef1
      Dries Buytaert authored
      - Applied Ax's pager patch: includes documentation (rewrote it somewhat) and two
        bugfixes; one that makes taxanomy based paging work (eg. index.php?and=2,3)
        and one that kills a warning when the query returns no records.
      51778ef1
  22. Nov 18, 2002
    • Dries Buytaert's avatar
      · 36cb350e
      Dries Buytaert authored
      - Don't display "1" when there is only one page.
      36cb350e
  23. Nov 09, 2002
    • Dries Buytaert's avatar
      · 562df8fe
      Dries Buytaert authored
      * Added Jeremy's pager:
      
       "This is a simple, generic pager for Drupal-CVS.  It is designed to be
        easily themeable and expandable.  The code is highly-commented to
        enhance readability."
      
       "Pagers are constructed by combining the provided pieces (all of which
        can be easily modified to display the text or image you prefer) into
        your custom pager."
      
      * Statistics module fixes by Jeremy:
      
       - removed superfluous check for existence of watchdog()
       - saving changes in admin page displays status and returns same page
       - no longer return 1971/01/01 in "view statistics" table
       - switched from "!=" to "<>" in SQL queries for ANSI-SQL compliance
       - switched from "MAX(timestamp) as timestamp" to "MAX(timestamp) as
         max_timestamp" moving towards ANSI-SQL compliance.
      
      * Added a "theme_item_list" function to format itemized lists.  Also
        changed a couple of modules to take advantage of it.  Makes for a
        more consistent UI.
      562df8fe