Skip to content
Snippets Groups Projects
  1. Feb 19, 2003
    • Dries Buytaert's avatar
      · 57ebd696
      Dries Buytaert authored
      - Added missing footer logic.  Patch by Ax.
      57ebd696
  2. Feb 17, 2003
    • Dries Buytaert's avatar
      · 52314ddc
      Dries Buytaert authored
      - Theme options patch.  See mailing list.
      52314ddc
  3. Feb 16, 2003
    • Dries Buytaert's avatar
      · 465a5987
      Dries Buytaert authored
      - Fixed off-by-one bug in the search module.  Patch by Brad.  (Still looking
        into the blog module patch.)
      465a5987
    • Kjartan Mannes's avatar
      - Added function node_invoke_all($hook, &$node, $op, $arg = 0). · dd329e1d
      Kjartan Mannes authored
      - Added a _nodeapi hook that in time will replace the _node hook. Trying
        to make as few changes to existing code as possible until the new api
        is stabilized.
      - Modified node_form() to add administration options from other modules
        using the _nodeapi hook.
      - Modified node_save() to fetch which fields should be saved to the node
        table from the _nodeapi hook.
      - Moved comment and queue options from node_form() and node_save() to
        the modules _nodeapi hooks.
      dd329e1d
    • Dries Buytaert's avatar
      · b29f1bff
      Dries Buytaert authored
      - Removed from the main repository.  See 'contrib/modules/devel' for a more
        advanced development module maintained by Moshe.
      b29f1bff
  4. Feb 15, 2003
  5. Feb 14, 2003
  6. Feb 13, 2003
  7. Feb 12, 2003
  8. Feb 11, 2003
  9. Feb 09, 2003
    • Dries Buytaert's avatar
      · 3d3a6074
      Dries Buytaert authored
      - Changed '%s' into '%d' such that an empty $user->uid is converted to 0.  Requi
      red for Drupal to work on new versions of PostgreSQL.  Patch by James.
      3d3a6074
    • Dries Buytaert's avatar
      · e5aae050
      Dries Buytaert authored
      - Changed '%s' into '%d' such that an empty $user->uid is converted to 0.  Required for Drupal to work on new versions of PostgreSQL.  Patch by James.
      e5aae050
    • Dries Buytaert's avatar
      - Changed '%s' into '%d' such that an empty $user->uid is converted to 0. Requi · f3c093f6
      Dries Buytaert authored
      red for Drupal to work on new versions of PostgreSQL.  Patch by James, backported to CVS by me.
      f3c093f6
    • Dries Buytaert's avatar
      · 9281d0cd
      Dries Buytaert authored
      - Applied Alastair's date patch.
      
      - Removed all instances of '$user->nodes'.
      
      - Committed Moshe's taxonomy patch - minus the node_compact_list() bit.  It needs a bit more thought/work.  This patch changes the links of taxonomy pages/feeds so update your custom code and themes accordingly!
      
      Themes should now use "taxonomy_link("taxonomy terms", $node)" to get an array of taxonomy term links.  The old construct is deprecated and should be changed.
      
      // old theme blob:
      if (function_exists("taxonomy_node_get_terms")) {
        foreach (taxonomy_node_get_terms($node->nid) as $term) {
          $terms[] = l($term->name, NULL, array(), "or=$term->tid");
        }
      }
      
      // new theme blob:
      if (module_exist("taxonomy")) {
        $terms = taxonomy_link("taxonomy terms", $node);
      }
      
      // old URL:
      http://foo.com/index.php?or=1,2
      
      // new URL:
      http://foo.com/?q=taxonomy/page/or/1,2
      9281d0cd
    • Dries Buytaert's avatar
      · 6953d95b
      Dries Buytaert authored
      - Fixed bug #1133: disabled comments are no longer shown.  Thanks Gerhard.
      6953d95b
    • Dries Buytaert's avatar
      · c97e7fe1
      Dries Buytaert authored
      - Small improvements to help people getting started with the xtemplate
        theme.
      c97e7fe1
  10. Feb 07, 2003
    • Dries Buytaert's avatar
      · 73f476a6
      Dries Buytaert authored
      - Fixed typo: forum2 -> forum.
      73f476a6
  11. Feb 06, 2003
    • Dries Buytaert's avatar
      · 4ea6d504
      Dries Buytaert authored
      - Updated the database scheme.
      4ea6d504
  12. Feb 02, 2003
    • Dries Buytaert's avatar
      · 10cb57a0
      Dries Buytaert authored
      - Removed redundant code.
      10cb57a0
    • Dries Buytaert's avatar
      · e4ff4106
      Dries Buytaert authored
      - Patch by Moshe: sometimes modules display content composed by people who
      are not members of the site. Two examples are listhandler and import modules.
      There is no easy way for these modules to display the true author of the
      content. Usually, the content appears as if authored by Anonymous User. This
      3 line patch enables modules to override the author name in their _view() hook.
      e4ff4106
    • Dries Buytaert's avatar
      · 6fcadb8e
      Dries Buytaert authored
      - Made it possible to print forum submission guidelines.  Patch by Moshe.
      6fcadb8e
  13. Feb 01, 2003
    • Dries Buytaert's avatar
      - Some updates · d99100c5
      Dries Buytaert authored
      d99100c5
    • Dries Buytaert's avatar
      · c23f53f7
      Dries Buytaert authored
      - Fixed typo: '$node->nide' -> '$node->nid'.  Patch by Alastair.
      c23f53f7
    • Dries Buytaert's avatar
      · 6746ee41
      Dries Buytaert authored
      - Added some caching.  Patch by Moshe.
      6746ee41
    • Dries Buytaert's avatar
      · cfd31c93
      Dries Buytaert authored
      Patch by Ax:
      
      - Bad usage of css ID's: they may be used for a single element only,
      but were used as #node, #block, which can occur multiple times in a
      single page.
      
      - Moved HTML from theme to template - thats what templates are all
      about!
      
      - Added support for head() hook
      
      - Added support for diffentiating between boxes and blocks.
      
      - Typo: secundary -> secondary
      cfd31c93
  14. Jan 31, 2003
  15. Jan 29, 2003
    • Dries Buytaert's avatar
      · 74a3318c
      Dries Buytaert authored
      - Bugfix; we got redirected to the wrong URL.
      74a3318c
    • Dries Buytaert's avatar
      · 2436dfbc
      Dries Buytaert authored
      - Bugfix: removed the call to comment_moderation.
      2436dfbc
    • Dries Buytaert's avatar
      · 2e6e1efb
      Dries Buytaert authored
      - Renamed "Allow HTML tags" to "Filter HTML tags" for clarity.  Reported by
        Ax.
      2e6e1efb
    • Dries Buytaert's avatar
      · 5b720be3
      Dries Buytaert authored
      - Corrected misplaced quote.  Reported by Gerhard.
      5b720be3
  16. Jan 27, 2003
    • Dries Buytaert's avatar
      · 4088adad
      Dries Buytaert authored
      - Fixed bug introduced by Moshe's common.inc patch; posting content would
        cause "Array" to be displayed.
      4088adad
    • Dries Buytaert's avatar
      · 92b5fc36
      Dries Buytaert authored
      - Fixed XHTML glitch in the sitemap.  Thanks Moshe and Michael.
      92b5fc36
  17. Jan 26, 2003
    • Dries Buytaert's avatar
      · a32e3d14
      Dries Buytaert authored
      - Added sitemap feature to administration pages.  Requested by various
        people including Michael and Moshe.
      a32e3d14
    • Dries Buytaert's avatar
      · 4028362f
      Dries Buytaert authored
      - Applied Moshe's _exit patch (slightly modified).
      
      - Fixed bug in system.module.
      4028362f
Loading