Skip to content
Snippets Groups Projects
  1. Nov 16, 2004
    • Dries Buytaert's avatar
      · 4dafd85f
      Dries Buytaert authored
      - Adding the missing flood tables.  Sorry.
      4dafd85f
  2. Nov 08, 2004
  3. Nov 07, 2004
    • Dries Buytaert's avatar
      · f01bd675
      Dries Buytaert authored
      - Performance improvement: made 'sid' the primary key of the sessions table.
        That should improve performance of session handling as well improve
        performance of the "Who's online"-block.  Drupal.org's sessions table
        contains appr. 40.000 sessions on a slow day and rendering the "Who's
        online"-block became a performance bottleneck.
      
        This change has yet to be tested on a busy site so things might go wrong.
      f01bd675
  4. Nov 04, 2004
    • Dries Buytaert's avatar
      - Patch #12232 by Steven: more search improvements: · b6eee48c
      Dries Buytaert authored
         + When a comment is posted, a node needs to be re-indexed. Luckily, we can use node_comment_statistics for this easily.
         + When a node is deleted, it should be deleted from the search index as well.
         + The search wipe didn't properly remove links to nodes from the index.
         + Section url was faulty in _help.
         + Minor code rearrangement.
      b6eee48c
  5. Nov 03, 2004
    • Dries Buytaert's avatar
      - Patch by Steven: · bd6ae693
      Dries Buytaert authored
         + Display 'friendly' name rather than module name in search watchdog
           messages.
         + Remove left-over from search_total table.
         + Add index wipe button to the admin
         + Moved the admin to admin/settings/search
         + Prevented menu bug when node modules update the breadcrumb in view
           (thanks JonBob).
         + Changed search_total table's word key to PRIMARY.
      bd6ae693
  6. Oct 31, 2004
    • Dries Buytaert's avatar
      - Patch #11875 by Neil Drumm: block module configuration improvements. · b3adcf05
      Dries Buytaert authored
      The primary goal of this patch is to take the 'custom' and 'path' columns of the block overview page and make them into something understandable. As of Drupal 4.5 'custom' lacked an explanation which wasn't buried in help text and path required dealing with regular expressions.
      
      Every block now has a configuration page to control these options. This gives more space to make form controls which do not require a lengthy explanation. This page also gives modules a chance to put their block configuration options in a place that makes sense using new operations in the block hook.
      
      The only required changes to modules implementing hook_block() is to be careful about what is returned. Do not return anything if $op is not 'list' or 'view'. Once this change is made, modules will still be compatible with Drupal 4.5. Required changes to core modules are included in this path.
      
      An additional optional change to modules is to implement the additional $op options added. 'configure' should return a string containing the configuration form for the block with the appropriate $delta. 'configure save' will come with an additional $edit argument, which will contain the submitted form data for saving. These changes to core modules are also included in this patch.
      b3adcf05
    • 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
  7. Oct 19, 2004
  8. Oct 18, 2004
  9. Oct 16, 2004
    • Dries Buytaert's avatar
      - Patch #11505 by Steven: 'my account' information is not saved. · 869a91b7
      Dries Buytaert authored
        + Drupal 4.4 stored profile data in the serialized user->data column. Drupal 4.5 stores profile data in tables (but user->data is still available and used for other stuff, like locale or themes).  The update from 4.4 to 4.5 didn't remove the old data from the user->data column properly, because there is no mechanism in user_save to do so (it did try to unset the fields, but this has no effect).
      
        + On registration, hook_user('insert') is invoked after saving the data column. This means that any module-specific data is put into the data field. We cannot move hook_user('insert') higher up, because before that point, we do not have a complete $user object yet.
      869a91b7
  10. Oct 13, 2004
  11. Oct 08, 2004
  12. Oct 06, 2004
    • Dries Buytaert's avatar
      · 67925ce0
      Dries Buytaert authored
      - Patch #11232 by David: fixed bug in upgrade path of the aggregator module.
      67925ce0
  13. Sep 27, 2004
    • Dries Buytaert's avatar
      · 3525d9df
      Dries Buytaert authored
      - Patch #11094 by Allen Chandler and Adrian: fixed PostgreSQL related SQL problem in aggregator module.
      3525d9df
  14. Sep 23, 2004
  15. Sep 22, 2004
    • Dries Buytaert's avatar
      · 29b8977a
      Dries Buytaert authored
      - Bugfix: the access rule mask does not have to be unique.  It should be possible to use a particular mask for both e-mail and username rules.  This also avoids an SQL query error.  Fixes bug report #10551.
      29b8977a
  16. Sep 20, 2004
    • Dries Buytaert's avatar
      · 228b3c7c
      Dries Buytaert authored
      - Patch #10945 by Adrian: more PostgreSQL fixes/updates.
      228b3c7c
  17. Sep 19, 2004
    • Dries Buytaert's avatar
      · 6dbd0bcf
      Dries Buytaert authored
      - Patch #6500 by Mathias with help from Steven: made it possible to add fields to the registration form.  This feature used to exist.
      6dbd0bcf
  18. Sep 15, 2004
  19. Sep 14, 2004
    • Steven Wittens's avatar
      updates.inc: · 318ce81a
      Steven Wittens authored
      Fixing some missing db prefix braces and some bad indentation. Adding a TODO for PGSQL to update_105.
      318ce81a
    • Dries Buytaert's avatar
      - Fixed typo in upgrade script · d3fff02f
      Dries Buytaert authored
      d3fff02f
    • Dries Buytaert's avatar
      · c09158c3
      Dries Buytaert authored
      - Patch #10308 by Bart Jansens/ccourtne: fixed shadow copies.
      
      - Patch #10308 by ccourtne: performance improvements: comment statistics are now cached in a new SQL table which significantly improves performance of the forum block and the forum pages.  These pages are about 3 times faster now!
      c09158c3
  20. Sep 13, 2004
  21. Sep 11, 2004
  22. Sep 09, 2004
    • Dries Buytaert's avatar
      · b84b6e42
      Dries Buytaert authored
      - Patch #10663 by JonBob: documentation improvements: fixed some typos and improved consistency to the use of Doxygen/api.module commands in the comments.
      b84b6e42
  23. Sep 08, 2004
    • Dries Buytaert's avatar
      · 7b716e8e
      Dries Buytaert authored
      - Patch #10622 by Adrian: fixes various PostgreSQL related problems.
      
        1) Menu problems with Postgres (this is a highly critical 1 line fix)
        2) Archive module fails with Postgres
        3) Postgres setup problems - changes to database.pgsql (although i made these changes myself before finding this patch)
        4) Book module fails with Postgres
        5) Postgres problems following creation of a new type of user - which is actually about a taxonomy.module bug.
        6) Creating accregator_item_table in PostgreSQL
        7) Postgres - Polls not displayed on Poll Page
        8) Blog module has sql errors with postgres
      
        This should not affect MySQL users (hopefully).
      7b716e8e
  24. Sep 07, 2004
  25. Sep 06, 2004
  26. Sep 05, 2004
  27. Sep 01, 2004
  28. Aug 22, 2004
  29. Aug 21, 2004
    • Steven Wittens's avatar
      The patch for renumbering the filter.module filters (after the legacy.module... · f5289871
      Steven Wittens authored
      The patch for renumbering the filter.module filters (after the legacy.module patch) forgot about updates.inc. Fixed.
      f5289871
    • Dries Buytaert's avatar
      · cfe20d0b
      Dries Buytaert authored
      - Patch #9654 by Bart Jansens: added some missing {} and fixed the upgrade path from Drupal 4.4.x.
      cfe20d0b
    • Dries Buytaert's avatar
      · 94e30bf7
      Dries Buytaert authored
      - Patch by JonBob: for consistency and readability, add brief descriptions of each source file inside the @file comment block at the head of the file. This helps with Doxygen indexing, and also allows neophytes to see what a file does immediately on opening the source, regardless of the organization of the hooks.
      94e30bf7
  30. Aug 20, 2004
  31. Aug 17, 2004
    • Dries Buytaert's avatar
      · 78b052a6
      Dries Buytaert authored
      - The upload (filehandler) module has landed!
      78b052a6
  32. Aug 14, 2004
    • Steven Wittens's avatar
      #10012 - Profile.module: · 6a380525
      Steven Wittens authored
      - Restoring broken update path.
      - Adding birthday/date function back, with update path.
      - Show private fields when viewing your own profile, or for admins.
      - Do not allow browsing of private fields for non admins (403)
      - Throw a 404 for browsing unbrowsable fields, rather than an SQL error
      - Fixing input processing: nothing is filtered twice anymore, and I replaced several strip_tags with specialchars (more flexible).
      - Minor admin UI tweaks + added friendly field type names.
      6a380525
  33. Aug 12, 2004
    • Dries Buytaert's avatar
      · 0f088b79
      Dries Buytaert authored
      - Patch #9983 by Stefan: various code style improvements.
      0f088b79
Loading