summaryrefslogtreecommitdiff
path: root/modules/search.module
Commit message (Collapse)AuthorAge
* - Patch #45697 by fgm: removed some useless global.Dries Buytaert2006-01-22
|
* - #42277: Make node search indexing more robust against bad nodes and timeouts.Steven Wittens2006-01-18
|
* - #44772: {} -> [] (in anticipation of PHP de-deprecation)Steven Wittens2006-01-15
|
* - #41744: global urlencode() for menu pathsSteven Wittens2005-12-22
|
* - #34826: Search results don't include last part of longer pagesSteven Wittens2005-12-21
|
* Search.module:Steven Wittens2005-12-21
| | | | | | | | | - #41897: Dead variable (remove_short) - #39117: Fix chinese search problem - Fix bug with and OR queries - Add smarter highlighting for CJK strings - Add message about minimum word length to user - Improve code comments
* - Patch #39043: changing the size of the search box back to 20 ...Dries Buytaert2005-12-19
|
* - Fix minimum_word_size default valuesSteven Wittens2005-12-18
|
* - #41402: First search pass was too greedy with short words.Steven Wittens2005-12-16
| | | | - Minor code simplifications in search_parse_query()
* - Patch #40631 by Chris Johnson: is_array() slower than isset() or empty().Dries Buytaert2005-12-14
|
* - Missing URLencode for remembering search keywords across tabsSteven Wittens2005-12-07
|
* - Patch #40079 by Moshe: removed dead code.Dries Buytaert2005-12-06
|
* - Patch #39576 by chx: rename '_execute' to '_submit' and '#execute' to ↵Dries Buytaert2005-12-02
| | | | '#submit'.
* - Various fixes. Updated CHANGELOG.txtDries Buytaert2005-11-29
|
* - Improved consistency: "Clear Site" -> "Clear site", "Re-index Site" -> ↵Dries Buytaert2005-11-29
| | | | "Re-index site"
* - #39137: Improve handling of preprocessor-generated words in search queries.Steven Wittens2005-11-28
| | | | | | - Improve search's default CJK tokenizer - Re-add index wipe button to admin (with confirmation) - Make default CJK tokenizer optional
* #36352: Don't prefix temporary table names after all.Steven Wittens2005-11-21
| | | | #36658: Make search query pgsql compatible.
* #36242: Array merge problems with module_invokeSteven Wittens2005-11-10
|
* - #36255: Fix db_query_temporary() in pgsqlSteven Wittens2005-11-04
| | | | - Prefix temporary table names (helps on restricted hosts)
* - Patch #26139 by webchick / Kieran / documentation team: improved admin ↵Dries Buytaert2005-11-01
| | | | help of core modules! /
* - Patch #30930 by m3avrck/deekayen: cured PHP5 warnings.Dries Buytaert2005-10-22
|
* - #22850: Search query containing / results in 404 on clean URLs.Steven Wittens2005-10-21
|
* - #28159: Advanced search features (hello from DrupalCon)Steven Wittens2005-10-18
| | | | | Presentation about it: http://www.acko.net/files/drupal-search-slim.pdf
* - Patch #33752 by chx, adrian, et al: another batch of form API changes/fixes.Dries Buytaert2005-10-11
|
* - Patch #29465: new form API by Adrian et al.Dries Buytaert2005-10-07
| | | | | | | TODO: + The contact.module was broken; a new patch for contact.module is needed. + Documentation is needed. + The most important modules need to be updated ASAP.
* - Patch #28784 by Neil: improved HTML/CSS of search form.Dries Buytaert2005-09-07
|
* - Patch #29385 by chx: no ?> add end of files.Dries Buytaert2005-08-25
|
* - #27624, #27614, #27627: dead codeSteven Wittens2005-07-29
|
* - #27626: Correct function nameSteven Wittens2005-07-29
|
* - #27531: Leftover string_length().Steven Wittens2005-07-27
|
* - #26688: Add mbstring support to Drupal and clear up string handling fuzzies.Steven Wittens2005-07-25
|
* - Patch #25603 by Stefan: made the sizes of forms consistent.Dries Buytaert2005-06-27
| | | | TODO: document the defaults in the PHPdoc comments.
* - Patch #22786 by mathias: now that db_affected_rows() returns the number of ↵Dries Buytaert2005-05-14
| | | | rows matched instead of only changed we can get rid of the hacks that worked around this.
* - Patch 20910 by chx: centralize print theme page.Dries Buytaert2005-04-24
|
* - Fix search index not wiping on admin settings change.Steven Wittens2005-04-23
|
* - #4166: Respect 'access userlist' permission for profile data.Steven Wittens2005-04-11
|
* - Patch #19739 by Uwe: corrected many typo's in the documentation and code ↵Dries Buytaert2005-03-31
| | | | comments
* - #18817: Clean up plain-text checking (see drupal-devel!)Steven Wittens2005-03-31
|
* - Part of #17747 was not committed (pgsql fixes).Steven Wittens2005-03-29
|
* - Use format_plural() for search status (items left to index)Steven Wittens2005-03-18
|
* - #19063: Use module_implements instead of hand-rolled routine.Steven Wittens2005-03-18
|
* - #18434: (search) Try wildcards automatically if there were no results.Steven Wittens2005-03-08
| | | | - Fix missing format_plural()
* #17747: PGSQL improvementsSteven Wittens2005-02-28
|
* - Oops: don't show refused words message if there are none.Steven Wittens2005-02-27
|
* - Fix submissions from search boxes in themesSteven Wittens2005-02-27
|
* - Search: fix search block stretching sidebarSteven Wittens2005-02-27
|
* More search usability improvements!Steven Wittens2005-02-27
| | | | | | | | | | | | | | | | - Clean URLs: search/type/keywords e.g. "search/node/drupal release". The search form is POST submitted, but drupal_gotos to a GET page. This makes it easy to copy/paste search URLs, and makes the pager a lot cleaner. - Remember the search keywords when switching between the search tabs. This is done through the same GET URLs rather than the session, so it does not mess up between multiple browser tabs. - Report which keywords were ignored because they were too short. - #820: Provide search block - Treat multiple wildcards in a row as one
* - Stripped white-space.Dries Buytaert2005-01-15
|
* Fixing search tabs going back to "content" when searching on other tabs.Steven Wittens2005-01-14
|
* - Some search doxygen tweaksSteven Wittens2005-01-13
|