Skip to content
  1. Mar 05, 2005
  2. Feb 24, 2005
  3. Feb 14, 2005
  4. Feb 02, 2005
    • Steven Wittens's avatar
      #10296: Clean up admin - content: · d56cf2b5
      Steven Wittens authored
      - Mass-delete functionality (with confirmation)
      - Flexible filtering for the overview table based on status, type and taxonomy.
      - Missing drupal_goto's
      - Clean up watchdog messages
      - Remove some dead code
      d56cf2b5
  5. Jan 30, 2005
  6. Jan 25, 2005
  7. Jan 23, 2005
    • Dries Buytaert's avatar
      · 1f54afa5
      Dries Buytaert authored
      - Patch #15655 by Goba: allow blank days in the calendar to be styled using CSS, and tidied up the calendar's CSS.
      1f54afa5
  8. Jan 17, 2005
  9. Jan 09, 2005
  10. Jan 03, 2005
  11. Nov 21, 2004
    • Dries Buytaert's avatar
      · 5f29fc9d
      Dries Buytaert authored
      - Removed hardcode font size from drupal.css as per #13095.
      5f29fc9d
  12. Oct 31, 2004
    • Dries Buytaert's avatar
      - Patch #12232 by Steven/UnConed: search module improvements. · 8daed9cb
      Dries Buytaert authored
      1) Clean up the text analyser: make it handle UTF-8 and all sorts of characters. The word splitter now does intelligent splitting into words and supports all Unicode characters. It has smart handling of acronyms, URLs, dates, ...
      
      2) It now indexes the filtered output, which means it can take advantage of HTML tags. Meaningful tags (headers, strong, em, ...) are analysed and used to boost certain words scores. This has the side-effect of allowing the indexing of PHP nodes.
      
      3) Link analyser for node links. The HTML analyser also checks for links. If they point to a node on the current site (handles path aliases) then the link's words are counted as part of the target node. This helps bring out commonly linked FAQs and answers to the top of the results.
      
      4) Index comments along with the node. This means that the search can make a difference between a single node/comment about 'X' and a whole thread about 'X'. It also makes the search results much shorter and more relevant (before this patch, comments were even shown first).
      
      5) We now keep track of total counts as well as a per item count for a word. This allows us to divide the word score by the total before adding up the scores for different words, and automatically makes noisewords have less influence than rare words. This dramatically improves the relevancy of multiword searches. This also makes the disadvantage of now using OR searching instead of AND searching less problematic.
      
      6) Includes support for text preprocessors through a hook. This is required to index Chinese and Japanese, because these languages do not use spaces between words. An external utility can be used to split these into words through a simple wrapper module. Other uses could be spell checking (although it would have no UI).
      
      7) Indexing is now regulated: only a certain amount of items will be indexed per cron run. This prevents PHP from running out of memory or timing out. This also makes the reindexing required for this patch automatic. I also added an index coverage estimate to the search admin screen.
      
      8) Code cleanup! Moved all the search stuff from common.inc into search.module, rewired some hooks and simplified the functions used. The search form and results now also use valid XHTML and form_ functions. The search admin was moved from search/configure to admin/search for consistency.
      
      9) Improved search output: we also show much more info per item: date, author, node type, amount of comments and a cool dynamic excerpt à la Google. The search form is now much more simpler and the help is only displayed as tips when no search results are found.
      
      10) By moving all search logic to SQL, I was able to add a pager to the search results. This improves usability and performance dramatically.
      8daed9cb
  13. Sep 21, 2004
  14. Sep 17, 2004
  15. Sep 14, 2004
  16. Sep 11, 2004
  17. Aug 20, 2004
  18. Aug 17, 2004
    • Dries Buytaert's avatar
      · 78b052a6
      Dries Buytaert authored
      - The upload (filehandler) module has landed!
      78b052a6
  19. Aug 10, 2004
    • Steven Wittens's avatar
      The Input formats - filter patch has landed. I still need to make update... · 660f9928
      Steven Wittens authored
      The Input formats - filter patch has landed. I still need to make update instructions for modules and update the hook docs.
      
      Here's an overview of the changes:
      1) Multiple Input formats: they are complete filter configurations (what filters to use, in what order and with which settings). Input formats are admin-definable, and usage of them is role-dependant. For example, you can set it up so that regular users can only use limited HTML, while admins can free HTML without any tag limitations.
      The input format can be chosen per content item (nodes, comments, blocks, ...) when you add/edit them. If only a single format is available, there is no choice, and nothing changes with before.
      
      The default install (and the upgrade) contains a basic set of formats which should satisfy the average user's needs.
      
      2) Filters have toggles
      Because now you might want to enable a filter only on some input formats, an explicit toggle is provided by the filter system. Modules do not need to worry about it and filters that still have their own on/off switch should get rid of it.
      
      3) Multiple filters per module
      This was necessary to accomodate the next change, and it's also a logical extension of the filter system.
      
      4) Embedded PHP is now a filter
      Thanks to the multiple input formats, I was able to move the 'embedded PHP' feature from block.module, page.module and book.module into a simple filter which executes PHP code. This filter is part of filter.module, and by default there is an input format 'PHP', restricted to the administrator only, which contains this filter.
      This change means that block.module now passes custom block contents through the filter system.
      As well as from reducing code duplication and avoiding two type selectors for page/book nodes, you can now combine PHP code with other filters.
      
      5) User-supplied PHP code now requires <?php ?> tags.
      This is required for teasers to work with PHP code. Because PHP evaluation is now just another step in the filter process, we can't do this. Also, because teasers are generated before filtering, this would result in errors when the teaser generation would cut off a piece of PHP code.
      
      Also, regular PHP syntax explicitly includes the <?php ?> tags for PHP files, so it makes sense to use the same convention for embedded PHP in Drupal.
      
      6) Filter caching was added.
      Benchmarking shows that even for a simple setup (basic html filtering + legacy URL rewriting), filtercache can offer speedups. Unlike the old filtercache, this uses the normal cache table.
      
      7) Filtertips were moved from help into a hook_filter_tips(). This was required to accomodate the fact that there are multiple filters per module, and that filter settings are format dependant. Shoehorning filter tips into _help was ugly and silly. The display of the filter tips is done through the input format selector, so filter_tips_short() no longer exists.
      
      8) A more intelligent linebreak convertor was added, which doesn't stop working if you use block-level tags and which adds <p> tags.
      660f9928
    • Dries Buytaert's avatar
      · f99830a4
      Dries Buytaert authored
      - Patch by Al: improved the admin/help pages (first step).
      f99830a4
  20. Aug 06, 2004
    • Dries Buytaert's avatar
      · 9bbdb71e
      Dries Buytaert authored
      - Patch #9330: ucfirst() gives problem when used with multibyte charset.
        Replaced the use of ucfirst() with a CSS-based solution.
      9bbdb71e
  21. Jul 25, 2004
    • Steven Wittens's avatar
      CSS improvements: · ad5e3ebb
      Steven Wittens authored
      - Restoring background coloring for the watchdog logs (was broken)
      - Making watchdog backgrounds lighter, makes it easier on the eyes and improves readability.
      - Adjusted the spacing between items on the frontpage a bit to be clearer.
      - Fixed the vertical stretching of table rows with form controls in them.
      ad5e3ebb
  22. Jul 07, 2004
    • Dries Buytaert's avatar
      · bddcee53
      Dries Buytaert authored
      - I'm removing these files from core: they belong in contrib/docs/marketing
        now (if they are not already there).
      bddcee53
  23. Jul 06, 2004
    • Dries Buytaert's avatar
      · 7bb88809
      Dries Buytaert authored
      - Patch #9049 by JonBob: fixed a number of tab issues.
      7bb88809
  24. Jun 20, 2004
    • Dries Buytaert's avatar
      · b713e3d4
      Dries Buytaert authored
      - Patch #8617 by TDobes: changes all gifs to pngs for better consistency (and
        to get of proprietary formats).
      
      - Added forum-sticky.png.  Made by Steven.
      b713e3d4
  25. Jun 19, 2004
    • 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
  26. 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
  27. Jun 02, 2004
  28. May 31, 2004
    • Dries Buytaert's avatar
      · 7f08110a
      Dries Buytaert authored
      - Improved form handling.
      
        + Introduced two new functions:
            1. form_set_error($name, $message): files an error against the form
               element with the specified  $name.
            2. form_has_errors(): returns true if errors has been filed against
               form elements.
      
        + Updated the form handling:
             1. The form_ functions will add 'class="error"' when a form field
                has been found to be erroneous.
             2. The error message is passed to theme_form_element() when the
                particular form field has been found to be erroneous.
      
        + I updated the user and profile module to take advantage of these new
          functions.
      
        + IMPORTANT: the _user() hook changed.  The 'validate' case should no
          longer retun an error message when something goes wrong but should
          set it with form_set_error().
      7f08110a
  29. May 29, 2004
    • Dries Buytaert's avatar
      · 5cd37157
      Dries Buytaert authored
      - Patch #6863 by Moshe: add 'class="active"' to the table elements of
        the active column.
      5cd37157
  30. May 13, 2004
    • Dries Buytaert's avatar
      · e6ff8b79
      Dries Buytaert authored
      - Made the recent news items page, the source pages and the categorization
        pages use pagers.  Removed the 'Items per page' setting and made Drupal
        remember news items much longer.
      e6ff8b79
  31. May 05, 2004
    • Dries Buytaert's avatar
      · 6f2d8518
      Dries Buytaert authored
      - Patch #7581 by bylund: made the archive module's calendar accessible.
      6f2d8518
  32. Apr 27, 2004
    • Dries Buytaert's avatar
      · 31172585
      Dries Buytaert authored
      - Various aggregator module improvements.  Modified patch by drumm.
      31172585
  33. Apr 18, 2004