Skip to content
Snippets Groups Projects
  1. 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
  2. Feb 07, 2003
    • Dries Buytaert's avatar
      · 73f476a6
      Dries Buytaert authored
      - Fixed typo: forum2 -> forum.
      73f476a6
  3. Feb 06, 2003
    • Dries Buytaert's avatar
      · 4ea6d504
      Dries Buytaert authored
      - Updated the database scheme.
      4ea6d504
  4. 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
  5. 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
  6. Jan 31, 2003
  7. 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
  8. 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
  9. 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
    • Dries Buytaert's avatar
      · ad9b0303
      Dries Buytaert authored
      - Some first changes to the system.module; tidied up some code, preparations
        for theme settings and borrowing some ideas from Kjartan's long-awaited
        system.module patch.
      ad9b0303
  10. Jan 23, 2003
  11. Jan 21, 2003
    • Dries Buytaert's avatar
      · 4dac201e
      Dries Buytaert authored
      - Patch by Ulf: XHTML-ified the code.
      4dac201e
    • Dries Buytaert's avatar
      · c52a3fea
      Dries Buytaert authored
      - Applied David's calendar patch: you can now configure at what day a week
        start.
      c52a3fea
    • 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
    • Dries Buytaert's avatar
      · ef0acbf2
      Dries Buytaert authored
      - A node's comment table is now being emitted by the new table rendering
        functions.
      ef0acbf2
    • Dries Buytaert's avatar
      - Tidied up some SQL queries. · d6adac74
      Dries Buytaert authored
      d6adac74
    • Dries Buytaert's avatar
      · 966f0811
      Dries Buytaert authored
      - Tidied up some SQL queries.
      966f0811
    • Dries Buytaert's avatar
      · a7b5d34c
      Dries Buytaert authored
      - Corrected the documentation.
      a7b5d34c
    • Dries Buytaert's avatar
      · dc3940cc
      Dries Buytaert authored
      Patch by Ax:
      
        - Removed the XML prolog from xtemplate.xtmpl because some browsers have difficulties with it and it's not required. see http://webstandards.org/learn/reference/prolog_problems.html.
      
        - Fixed the term link.
      dc3940cc
  12. Jan 20, 2003
Loading