Skip to content
Snippets Groups Projects
  1. Jul 21, 2004
  2. Jul 15, 2004
    • Dries Buytaert's avatar
      · 7765fa1f
      Dries Buytaert authored
      - Patch #9290 by Morbus / JonBob / TDobes: SUBTASK removal patch for menu.inc.
      7765fa1f
  3. Jul 14, 2004
    • Dries Buytaert's avatar
      f63c3be3
    • Dries Buytaert's avatar
      · 63a327db
      Dries Buytaert authored
      - Patch #9287 by JonBob: made the code style in the three database include files consistent with Drupal standards, and adds a wealth of Doxygen-style comments to aid developers in writing solid database access code using the API.
      63a327db
    • Dries Buytaert's avatar
      · ce8e2643
      Dries Buytaert authored
      - Patch #9262 by Ber / JonBob: the menu did not build correctly, thus the additional menu's were never displayed, but were saved. Only the last custom menu was displayed.
      ce8e2643
  4. Jul 13, 2004
    • Dries Buytaert's avatar
      · 50d78e98
      Dries Buytaert authored
      - Patch #9238 by JonBob: added code and Doxygen comments to common.inc and
        bootstrap.inc.
      50d78e98
  5. Jul 12, 2004
  6. Jul 11, 2004
    • Dries Buytaert's avatar
      · 323d9fe0
      Dries Buytaert authored
      - Call 'exit' hook when drupal_goto() is called.  Also necessary for the
        devel.module.
      323d9fe0
  7. Jul 10, 2004
    • Dries Buytaert's avatar
      · f163fa99
      Dries Buytaert authored
      - Patch by JonBob: a significant documentation update for the menu system!
      f163fa99
    • Dries Buytaert's avatar
      · ac5b5616
      Dries Buytaert authored
      - More tab-improvements by JonBob: improved support for the default tabs!
      ac5b5616
  8. Jul 08, 2004
    • Dries Buytaert's avatar
      · a0671877
      Dries Buytaert authored
      - Patch #8509 by Killes and Steven: added support for sending compressed
        pages.  Useful to reduce your site's bandwidth.
      a0671877
    • Dries Buytaert's avatar
      · 56fa37cb
      Dries Buytaert authored
      - Made the example theme display status messages.  Not sure why it wasn't.
      56fa37cb
    • Dries Buytaert's avatar
      · 5b73def3
      Dries Buytaert authored
      - Changed the way status messages are printed as per Kristjan's suggestion:
        http://drupal.org/files/issues/error_messages_list.png (issue #9138).
      
        drupal_set_message() has been changed to group message by type and a
        helper function, theme_status_message(), is added to display the messages.
        Chameleon and Xtemplate have been updated to use this new function.
      
      - Updated CHANGELOG.txt.
      5b73def3
    • Dries Buytaert's avatar
      · 02ae1ce6
      Dries Buytaert authored
      - Many form_ functions called theme('form_element') with the wrong parameters!
      
      - Fixed order of parameters in form_checkboxes() (plural).
      02ae1ce6
  9. Jul 06, 2004
    • Dries Buytaert's avatar
      · 7bb88809
      Dries Buytaert authored
      - Patch #9049 by JonBob: fixed a number of tab issues.
      7bb88809
  10. Jul 04, 2004
    • Dries Buytaert's avatar
      · fe2b3e7c
      Dries Buytaert authored
      - Patch by Steven and me: refactored the form handling of nodes. The node system is now using form_set_error() and friends like the rest of Drupal does. This makes for both a consistent user experience and consistent code. It simplifies the forms and validation code, however, it does change the node API slightly:
      
          * The _validate hook and the _nodeapi('validate') hook of the node API (1) no longer take an 'error' parameter and (2) should no longer return an error array. To set an error, call form_set_error().
      
          * The _form hook of the node module no longer takes a form hook and should not worry about displaying errors. Ditto for _nodeapi('form_post') and _nodeapi('form_pre').
      fe2b3e7c
    • Dries Buytaert's avatar
  11. Jul 02, 2004
    • Dries Buytaert's avatar
      · 9986cb36
      Dries Buytaert authored
      - Patch #8973 by JonBob: Drupal contains many undefined variables and array indices, which makes PHP throw a lot of warnings when the reporting level is set to E_ALL. Things run fine with these warnings, but as a matter of code style if nothing else we should probably strive to avoid them. The attached fixes most of the more egregious offenders (about 95% of the warnings when I load /node on my test site).
      9986cb36
  12. Jun 30, 2004
  13. Jun 28, 2004
  14. Jun 27, 2004
    • Dries Buytaert's avatar
      · 0a352809
      Dries Buytaert authored
      - Patch #8603 by TDobes: added support for sticky forum topics to the blog
        and forum module.
      0a352809
  15. Jun 22, 2004
  16. Jun 21, 2004
  17. Jun 20, 2004
  18. Jun 19, 2004
    • Dries Buytaert's avatar
    • Dries Buytaert's avatar
      · cbc230a3
      Dries Buytaert authored
      - Patch #7696 by TDobes: renamed 'static' to 'sticky' which is a more
        logical name.  Requires a database upgrade.
      cbc230a3
    • Dries Buytaert's avatar
      · a42b84e5
      Dries Buytaert authored
      First tab improvements by Adrian:
      
        + Changed menu.inc to generate two separate lists instead of nested lists:
          that seems to be the only alternative to get rid of absolute positioning.
      
        + Changed the tabs code to be more sexy and put the code in misc/drupal.css
          so all themes are automagically updated.
      a42b84e5
  19. Jun 18, 2004
    • Dries Buytaert's avatar
      · 54b77d64
      Dries Buytaert authored
      Tabs patch!
      
      CHANGES
      -------
      
       + Introduced tabs. First, we extended the menu system to support tabs. Next, a tab was added for every link that was (1) an administrative action other than the implicit 'view' (2) relevant to that particular page only. This is illustrated by the fact that all tabs are verbs and that clicking a page's tab leads you to a subpage of that page.
      
       + Flattened the administration menu. The tabs helped simplify the navigation menu as I could separate 'actions' from 'navigation'. In addition, I removed the 'administer > configuration'-menu, renamed 'blocks' to 'sidebars' which I hope is a bit more descriptive, and made a couple more changes. Earlier, we already renamed 'taxonomy' to 'categorization' and we move 'statistics' under 'logs'.
      
       + Grouped settings. All settings have been grouped under 'administer > settings'.
      
      TODO
      ----
      
       + Update core themes: only Xtemplate default supports tabs and even those look ugly.  Need help.
      
       + Update contributed modules.  The menu() hook changed drastically.  Updating your code adhere the new menu() function should be 90% of the work.  Moreover, ensure that your modue's admin links are still valid and that URLs to node get updated to the new scheme ('node/view/x' -> 'node/x').
      54b77d64
  20. Jun 04, 2004
  21. Jun 02, 2004
Loading