- Nov 16, 2004
-
-
Dries Buytaert authored
- Adding the missing flood tables. Sorry.
-
- Nov 08, 2004
-
-
Dries Buytaert authored
-
Dries Buytaert authored
-
- Nov 07, 2004
-
-
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.
-
- Nov 04, 2004
-
-
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.
-
- Nov 03, 2004
-
-
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.
-
- Oct 31, 2004
-
-
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.
-
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.
-
- Oct 19, 2004
-
-
Dries Buytaert authored
- Patch #11728 by Uwe Hermann: fixed some typos in the code comments, Doxygen documentation and screen output. Uwe: I dropped the 'iff' chunks as 'iff' stands for 'if and only if'.
-
- Oct 18, 2004
-
-
Dries Buytaert authored
-
- Oct 16, 2004
-
-
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.
-
- Oct 13, 2004
-
-
Steven Wittens authored
Bug: the default filter setup had the wrong filter delta for the linebreak filter. Now it matches updates.inc.
-
- Oct 08, 2004
-
-
Steven Wittens authored
-
- Oct 06, 2004
-
-
Dries Buytaert authored
- Patch #11232 by David: fixed bug in upgrade path of the aggregator module.
-
- Sep 27, 2004
-
-
Dries Buytaert authored
- Patch #11094 by Allen Chandler and Adrian: fixed PostgreSQL related SQL problem in aggregator module.
-
- Sep 23, 2004
-
-
Steven Wittens authored
-
- Sep 22, 2004
-
-
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.
-
- Sep 20, 2004
-
-
Dries Buytaert authored
- Patch #10945 by Adrian: more PostgreSQL fixes/updates.
-
- Sep 19, 2004
-
-
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.
-
- Sep 15, 2004
-
-
Steven Wittens authored
-
- Sep 14, 2004
-
-
Steven Wittens authored
Fixing some missing db prefix braces and some bad indentation. Adding a TODO for PGSQL to update_105.
-
Dries Buytaert authored
-
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!
-
- Sep 13, 2004
-
-
Dries Buytaert authored
- Patch #10775 by crackermackjack: fixed error in the database.mysql file that is incompatible with Mysql > 4.1.x. - Patch #10786 by crackermackjack: fixed bug in session keys (bug in particular MySQL version).
-
- Sep 11, 2004
-
-
Steven Wittens authored
-
- Sep 09, 2004
-
-
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.
-
- Sep 08, 2004
-
-
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).
-
- Sep 07, 2004
-
-
Steven Wittens authored
-
- Sep 06, 2004
-
-
Steven Wittens authored
-
- Sep 05, 2004
-
-
Steven Wittens authored
-
- Sep 01, 2004
-
-
Steven Wittens authored
-
- Aug 22, 2004
-
-
Steven Wittens authored
-
- Aug 21, 2004
-
-
Steven Wittens authored
The patch for renumbering the filter.module filters (after the legacy.module patch) forgot about updates.inc. Fixed.
-
Dries Buytaert authored
- Patch #9654 by Bart Jansens: added some missing {} and fixed the upgrade path from Drupal 4.4.x.
-
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.
-
- Aug 20, 2004
-
-
Dries Buytaert authored
- Theme system changes. Please consult http://drupal.org/node/view/9576 for details.
-
Dries Buytaert authored
- Patch #10196 by drumm: fixed off by one error.
-
- Aug 17, 2004
-
-
Dries Buytaert authored
- The upload (filehandler) module has landed!
-
- Aug 14, 2004
-
-
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.
-
- Aug 12, 2004
-
-
Dries Buytaert authored
- Patch #9983 by Stefan: various code style improvements.
-