summaryrefslogtreecommitdiff
path: root/modules/search.module
Commit message (Collapse)AuthorAge
* - Patch from Matt:Dries Buytaert2003-09-10
| | | | | | "The noise words description says that whitespace and line breaks will be stripped out, but the code never does any trimming. This simple patch strips the whitespace from the noise words. This probably takes care of bug #2804."
* - More help system updates by Michael F.Dries Buytaert2003-08-25
|
* - Committed a slightly modified version of Slavica's table prefix patch.Dries Buytaert2003-07-10
|
* - Bugfix: fixed problem with search terms not being escaped properly.Dries Buytaert2003-06-30
|
* - Reworked the CXX checking; now, _any_ user input will be checkedDries Buytaert2003-06-27
| | | | | | | | | | | | | and the request will be terminated when something suspicious is detected. This will be logged in the watchdog. With help from Marco. - Fixed translation issue in the archive module. Patch by Gerhard. - Removed dead parameter from variable_get(). Patch by Chris Johnson. Fixes bug #2111. - Improved input checking of taxonomy module. Patch by Gerhard. Fixes bug #2112.
* - Bugfix: fixed bug in the search module that prevented the title moduleDries Buytaert2003-06-25
| | | | from working properly. Patch by Moshe. Fixes bug #1852.
* - Bugfix: fixed searches to do boolean AND rather than OR. This isn't the ↵Dries Buytaert2003-06-16
| | | | | | best way to do things, but seems to be pretty much the only way to get things to be properly ANSI-compliant. Patch by #17 by Al. (Note: I haven't really tested this fix but this should fix bug #1857.)
* - Made it possible to link search results. Patch by Ax.Dries Buytaert2003-06-08
| | | | - Removed some high ASCII characters from the code. Patch by Ax.
* - Fixed a warning. Patch by Jacobo Tarrio.Dries Buytaert2003-05-30
|
* - Michael Frankowski's excellent help text improvements!Dries Buytaert2003-05-29
|
* - Fixed search module bug. Patch by Michael.Dries Buytaert2003-05-23
|
* - Replaced some PHP_SELF's by request_uri()'s. Patch by Gerhard.Dries Buytaert2003-05-18
|
* - Fixed a typo in the PostgreSQL database scheme. Patch by Michael Frankowski.Dries Buytaert2003-05-13
| | | | | | | | | | | | | - Fixed a typo in the MSSQL database scheme. Patch by Michael Frankowski. - Removed dependency on "register_globals = on"! Patches by Michael Frankowski. Notes: + Updated the patches to use $foo["bar"] instead of $foo['bar']. + Updated the INSTALL and CHANGELOG files as well. - Tiny improvement to the "./scripts/code-clean.sh" script.
* - Applied Michael Caerwyn's "%s -> %d" patch.Dries Buytaert2003-05-07
| | | | - Changed all occurences of '%d' to %d as suggested on the mailing list.
* - Added title module; this brings back some old functionality. ThanksDries Buytaert2003-04-24
| | | | Moshe and Gerhard.
* - Fixed some PHP "notices".Dries Buytaert2003-04-21
|
* - Fixed bug in search.module: slashes where escaped twice.Dries Buytaert2003-03-06
|
* - Fixed off-by-one bug in the search module. Patch by Brad. (Still lookingDries Buytaert2003-02-16
| | | | into the blog module patch.)
* - Everything is using theme("function") now instead of $theme->function().Dries Buytaert2003-02-15
|
* - Applied patch from Axel: missing cid in comment search results.Kjartan Mannes2003-02-12
|
* - See http://lists.drupal.org/pipermail/drupal-devel/2003-February/021824.html.Dries Buytaert2003-02-11
|
* - Tidied up XHTML. Patch by Ulf.Dries Buytaert2003-01-23
| | | | - Added missing t() function. Patch by Stefan.
* - Tidied up some SQL queries.Dries Buytaert2003-01-21
|
* - Clean URL patch.Dries Buytaert2003-01-06
|
* - Fixed bug that prevented results containing multiple occurences of theDries Buytaert2003-01-01
| | | | search word(s). Patch by Ax.
* - Tidied up the use of check_output(). Might make rendering pages a bitDries Buytaert2002-12-31
| | | | snappier (performance improvement).
* - Made the search module use implicit AND'ing instead of OR'ing. Patch byDries Buytaert2002-11-27
| | | | Gerhard. Also updated the documentation a little.
* - Fixed bug in search module. Patch by Gerhard.Dries Buytaert2002-11-25
|
* - Search configuration settings are now a part of the standardDries Buytaert2002-11-21
| | | | configuration page. Patch by Kjartan.
* - Applied the correct search module patch (I hope). Thanks Gerhard.Dries Buytaert2002-11-18
|
* - Committed Gerhard's search module improvements.Dries Buytaert2002-11-18
|
* - Added form descriptions. Patch by Kjartan.Dries Buytaert2002-11-17
|
* - improved module descriptions.Kjartan Mannes2002-06-08
| | | | | | | - removed admin options for queue and comment module if the modules are not loaded. - nodes are now auto promoted when queue module isn't enabled. - moderation result block is now visible by the node author.
* Some small corrections to the system descriptions (as discussed in mailinglist)Steven Wittens2002-06-04
|
* - adding descriptions to modules (thanks Joe + Scott).Kjartan Mannes2002-06-01
| | | | | | | | | | - fixed comment flat list view missing 1 comment. - changed update.php around a bit. * security check isn't in effect if the db hasn't been updated. * instructions re-organized. * fixed some minor updates. - updated database.mysql done by UnConeD. - changelog update.
* - Replaced a "mysql_query()" by a "db_query" as identified by Moshe (seeDries Buytaert2002-05-26
| | | | | | | | | | | | | | | | | | | | | | his sandbox) and fixed some typos in the module's comments. * Moshe: what are the $wordlist changes you made? Mind to elaborate a bit on those? * TODO: validate the SQL queries used in the search module using a SQL validator tool - I wonder whether they are ANSI compliant. - // If the word is preceeded by a "+", then this word is required, and + // If the word is proceeded by a "+", then this word is required, and - $inputword = ("INSERT INTO search_index VALUES('$key', ". $node["lno"] .", '$node_type', $value)"); - mysql_query($inputword); + db_query("INSERT INTO search_index VALUES('$key', ". $node["lno"] .", '$node_type', $value)"); } - // Zap the weighted words array, so we dont add multiples. + // Zap the weighted words array, so we don't add multiples.
* - applied Stevens link patch.Kjartan Mannes2002-05-12
| | | | | | - fixed block permissions. - fixed user admin page errors: http://www.drupal.org/node.php?id=173. - cleaned up common.inc a bit: removed format_info, path_img, field_merge.
* - Applied Marco's big patch, including contributions from Moshe:Dries Buytaert2002-04-20
| | | | | | | | | | | | | | | | | | | | | | + Changed the db_query() API. + Wrapped all links in l(), lm(), la(), ..., drupal_url() functions. + XHTML-ified some HTML. + Wrapped a lot of text in the administrative pages in a t() function. + Replaced all $REQUEST_URI/$PATH_INFOs by request_uri(). + Small bugfixes (eg. bug in book_export_html() and clean-ups (eg. RSS code). + Fixed some bugs in the taxonomy module (eg. tree making bug), added new functionality (eg. new APIs for use by other modules), included Moshe's taxonomy extensions, and some documentation udpates. + ...
* - Added Marco's long-awaited taxonmy module and patches - a replacementDries Buytaert2002-04-14
| | | | | | | | | | | | | | | | | | | for the meta system. The patches add some extra functionality to the comment system (for example, comments can be set read-only) and fix a couple of small problems. + I integrated the required SQL updates from the varius *.mysql files into the "update.php" script. Upgrading should be easy ... + I did not apply/commit the "user.diff" as requested by Marco ... + I didn't know what to do with "forum.module" and "forum2.module": what do you want me to do with it Marco? Which one should go in? + Can we remove "node_index()" now; both from "node.module" and the themes? + Thanks Marco!
* - my editor got set up to insert tabs instead of spaces. Cleaning up.Kjartan Mannes2002-04-05
|
* - applied search patch.Kjartan Mannes2002-03-05
| | | | | | | | | | | | | | | | - added who is online block. - made weblog module more configurable. - users may now delete their own accounts (Feature #8) - users may now request a password using email address *or* username. formerly required both items to match an account which was onerous. - the link to request a new password is now presented whenever a user fails login. - there is now a confirmation message after submitting edits to your user information. - error messages in user.module may now be stylized by themes. - <hook>_form has a $param setting you can fill with form parameters. - improved wording for a few config settings. - fixed various non-coding standard things.
* - Fixed more than 30 HTML and XML well-formedness errors.Dries Buytaert2002-01-27
|
* - Updated some of the descriptions.Dries Buytaert2002-01-11
|
* - A large batch of updates, amongst them a rewritten node system. MoreDries Buytaert2001-11-01
| | | | information available on the mailing list.
* - added the CVS keyword $Id$ to all files to make future version trackingKjartan Mannes2001-10-20
| | | | easier. Also changed the <? tag to <?php in some cases.
* - PEAR-ification of Drupal by claw: you can now host Drupal on a wideDries Buytaert2001-10-09
| | | | | | | range of databases including MySQL, PostgreSQL, MSSQL, and others. For additional information and an 'how to upgrade', check the mails sent to the mailing list.
* - Improved search architecture derived from Axel's new search patches.Dries Buytaert2001-10-03
| | | | | | | (There is room for improvement so let's go from these ... and build on them.) - Removed some $status's by calls to node_status().
* - fixed small glitch in node_del()Dries Buytaert2001-09-28
| | | | | | | | | | | | | | | | | | | | | - fixed small glitch in comment_del() - changed the API of the form() function. The first parameter, the "action"-attribute in the <form>-tag has been made optional. By default, it will be set to "$REQUEST_URI". Why? Because in 98% of the cases we would do: global $REQUEST_URI; $form = form($REQUEST_URI, $form_content); while we can do: $form = form($form_content); now. Update your modules (and sorry for the inconvenience)!
* - book.module: fixed "/admin.php" bug reported by Gerhard.Dries Buytaert2001-09-27
| | | | - search.module: made the search categories translatable.
* - Fixed translation bugs (reported by Alexander Schwartz)Dries Buytaert2001-09-24
|