- 11 Dec, 2004 2 commits
- 07 Dec, 2004 1 commit
-
-
Dries authored
- Refactored the queue module: removed the queue module's field from the node table. With help from Gerhard. - Slight addition to INSTALL.txt with regard to PHP versions. - Updated/reworded some node type descriptions as per Boris' suggestions. - Adding missing {} around a table name in update.php.
-
- 02 Dec, 2004 1 commit
-
-
Dries authored
-
- 29 Nov, 2004 2 commits
-
-
Dries authored
1. Fixed broken watchdog calls: two watchdog calls omitted the type parameter, and thus injected logs into the type field, instead of the message field. 2. Removed t() functions from user contributed content.
-
- 21 Nov, 2004 2 commits
-
-
Dries authored
- Patch 13180 by chx: renamed check_query() to db_escape_string() and implemtented it properly per database backend. Read the manual for pg_escape_string: "Use of this function is recommended instead of addslashes()." Or read sqlite_escape_string: "addslashes() should NOT be used to quote your strings for SQLite queries; it will lead to strange results when retrieving your data."
- 15 Nov, 2004 1 commit
-
- 31 Oct, 2004 2 commits
-
-
Dries 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 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.
-
- 28 Oct, 2004 1 commit
-
-
Steven Wittens authored
-
- 18 Oct, 2004 1 commit
-
-
Steven Wittens authored
-
- 17 Oct, 2004 1 commit
-
-
Dries authored
- Patch #11670 by TDobes: comment.module did not properly set a breadcrumb for creating/previewing new comments. The node on which your commenting and its location within the menu is not displayed. Instead, there is only a "Home" link. This is especially apparent when the "add new comment" form is set up to display on a separate page.
-
- 16 Oct, 2004 1 commit
-
- 15 Oct, 2004 3 commits
-
-
Dries authored
-
- 14 Oct, 2004 1 commit
-
-
Steven Wittens authored
-
- 13 Oct, 2004 1 commit
-
-
Steven Wittens authored
-
- 12 Oct, 2004 2 commits
-
-
Steven Wittens authored
-
Steven Wittens authored
-
- 10 Oct, 2004 2 commits
-
- 09 Oct, 2004 1 commit
-
- 07 Oct, 2004 1 commit
-
-
Steven Wittens authored
-
- 05 Oct, 2004 3 commits
-
-
Steven Wittens authored
- 30 Sep, 2004 1 commit
-
- 28 Sep, 2004 1 commit
-
-
Steven Wittens authored
Modified version of #10230: Put placement of filter format selector in a module's hands, and move it below the relevant textarea.
-
- 27 Sep, 2004 1 commit
-
- 20 Sep, 2004 1 commit
-
- 16 Sep, 2004 1 commit
-
- 14 Sep, 2004 2 commits
-
-
Dries authored
- Fixed SQL problem in _comment_update_node_statistics().
-
Dries 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!
-
- 11 Sep, 2004 1 commit
-
-
Dries authored
- Bugfix: comment subject where not always enabled by default because the default value of comment_subject_field varies.
-
- 05 Sep, 2004 1 commit
-
-
Steven Wittens authored
Comment previewing was broken since 1.263, resulting in a double page.
-
- 22 Aug, 2004 1 commit
-
-
Steven Wittens authored
-
- 21 Aug, 2004 1 commit
-
-
Dries 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.
-