Skip to content
  1. Feb 25, 2011
  2. Jan 10, 2008
  3. Jul 26, 2007
  4. Jan 04, 2007
  5. Oct 18, 2006
  6. Oct 05, 2006
  7. Aug 24, 2006
  8. Apr 14, 2006
  9. Apr 11, 2006
  10. Apr 06, 2006
  11. Apr 02, 2006
  12. Apr 01, 2006
  13. Mar 26, 2006
  14. Mar 17, 2006
  15. Feb 21, 2006
  16. Feb 17, 2006
  17. Dec 28, 2005
    • Dries Buytaert's avatar
      - Patch #41755 by Cvbge: · 753f11d8
      Dries Buytaert authored
         1. "int(10)" -> "int", fixed typo in index name [pgsql change only]
         2. added defaults for uid and hostname (needed for both)
         3. postgres supports "DROP column" syntax
         4. added missing DELETEs for new table in poll_delete() and poll_update()
      753f11d8
  18. Dec 27, 2005
  19. Dec 14, 2005
  20. Dec 02, 2005
  21. Nov 28, 2005
  22. Nov 23, 2005
  23. Nov 12, 2005
  24. Nov 02, 2005
  25. Nov 01, 2005
  26. Oct 31, 2005
  27. Oct 11, 2005
  28. Oct 07, 2005
  29. Sep 23, 2005
  30. Aug 29, 2005
  31. Aug 28, 2005
    • Dries Buytaert's avatar
      - Patch #29785 by Chx: multiple node types were broken so we refactored · c9fc300b
      Dries Buytaert authored
        part of the node system!  If you have a module that implements node
        types, you'll have to udpate its CVS HEAD version.
      
        We replaced _node_name() and _node_types() by _node().  The new _node()
        hook let's you define one or more node types, including their names.
        The implementation of the _node() hook needs to:
      
         return array($type1 => array('name' => $name1, 'base' => $base1),
                      $type2 => array('name' => $name2, 'base' => $base2));
      
        where $type is the node type, $name is the human readable name of the type
        and $base is used instead of <hook> for <hook>_load, <hook>_view, etc.
      
        For example, the story module's node hook looks like this:
      
          function story_node() {
            return array('story' => array('name' => t('story'), 'base' => 'story'));
          }
      
        The page module's node hook module like:
      
          function page_node() {
            return array('page' => array('name' => t('page'), 'base' => 'page'));
          }
      
        However, more complex node modules like the project module and the
        flexinode module can use the 'base' parameter to specify a different base.
      
        The project module implements two node types, proejcts and issues, so it
        can do:
      
          function project_node() {
            return array(
             array('project_project' => array('name' => t('project'), 'base' => 'project'),
             array('project_issue' => array('name' => t('issue'), 'base' => 'project_issue'));
          }
      
        In the flexinode module's case there can only one base ...
      
        This hook will simplify the CCK, and will make it easy (or easier) to merge
        the story and page module.
      
        In addition, node_list() became node_get_types().  In addition, we created
        the following functions: node_get_name($type) and node_get_base($type).
      c9fc300b
  32. Aug 25, 2005
  33. Jul 17, 2005
  34. Jun 27, 2005
  35. May 31, 2005
  36. Apr 24, 2005
    • Dries Buytaert's avatar
      · a76a1e1f
      Dries Buytaert authored
      - Patch 20910 by chx: centralize print theme page.
      a76a1e1f