summaryrefslogtreecommitdiff
path: root/modules/search.module
Commit message (Collapse)AuthorAge
* - More tab-improvements by JonBob: improved support for the default tabs!Dries Buytaert2004-07-10
|
* Tabs patch!Dries Buytaert2004-06-18
| | | | | | | | | | | | | | | | | | CHANGES ------- + Introduced tabs. First, we extended the menu system to support tabs. Next, a tab was added for every link that was (1) an administrative action other than the implicit 'view' (2) relevant to that particular page only. This is illustrated by the fact that all tabs are verbs and that clicking a page's tab leads you to a subpage of that page. + Flattened the administration menu. The tabs helped simplify the navigation menu as I could separate 'actions' from 'navigation'. In addition, I removed the 'administer > configuration'-menu, renamed 'blocks' to 'sidebars' which I hope is a bit more descriptive, and made a couple more changes. Earlier, we already renamed 'taxonomy' to 'categorization' and we move 'statistics' under 'logs'. + Grouped settings. All settings have been grouped under 'administer > settings'. TODO ---- + Update core themes: only Xtemplate default supports tabs and even those look ugly. Need help. + Update contributed modules. The menu() hook changed drastically. Updating your code adhere the new menu() function should be 90% of the work. Moreover, ensure that your modue's admin links are still valid and that URLs to node get updated to the new scheme ('node/view/x' -> 'node/x').
* - Patch #4950 by Stefan (and Morbus): made watchdog messages translatable.Dries Buytaert2004-06-02
|
* - Fixed empty searches being performed.Kjartan Mannes2004-05-30
| | | | | - Fixed empty searches being logged. - Trim whitespace from start and end of search key.
* - Added support for 403 handling. Patch by JonBob. As a side benefit,Dries Buytaert2004-04-21
| | | | | | | | administrators will be able to define a custom 403 page, just as they can define 404 pages now. This needs to be documented in the "Changes since / migrating to ..." pages.
* - Patch #7088 by TDobes: fixed incorrect comment links in search results.Dries Buytaert2004-04-13
|
* - Patch by Steven: removed redundant permission checks. These are no longerDries Buytaert2004-02-15
| | | | required thanks to the new 404 handling.
* Patch 5287 by Stefan: multiline help texts should become inside a single ↵Dries Buytaert2004-01-23
| | | | $output.
* - Log the search terms in a new watchdog category.Dries Buytaert2004-01-02
|
* - Updated code to use new semantics of url() and l().Dries Buytaert2003-12-29
|
* - XHTML improvements: <b> -> <strong>. Patch by Stefan.Dries Buytaert2003-12-29
|
* - Updated the calls to menu() to use MENU_HIDE instead of 1Dries Buytaert2003-12-17
|
* - Tidied up the DoxyGen comments. Patch by Kjartan.Dries Buytaert2003-12-08
|
* - Removed duplicated code. Reported by Goba.Dries Buytaert2003-11-30
|
* - Committed phase 4 of JonBob's menu system changes.Dries Buytaert2003-11-25
|
* Patch by Ax to fixe and improve to the core doxygen PHPdoc:Dries Buytaert2003-11-24
| | | | | | | | | | | | * fixes all doxygen warnings [#]_ in the current code base + changes @param style from phpDocumentor (@param type $var desc) to doxygen (@param $var desc) + documents all undocumented parameters + escapes / fixes html warnings + fixes @defgroup in theme.inc * adds more groupings [#]_ + drupal_{set|get}_title, drupal_{set|get}_breadcrumb + pager.inc: pager_api (pager_query(), pager_display()), pager pieces * adds a new group "themeable" which contains all themeable functions.
* - Committed phase 3 of JonBob's menu changes. Adds an API for modules toDries Buytaert2003-11-23
| | | | | define titles and breadcrumbs for their pages, and updates the theme system to display them.
* - Patch by JonBob:Dries Buytaert2003-11-20
| | | | | | | | Phase 2 of the menu system integration project. This unifies the interface used by admin and non-admin pages, and deprecates the _page hook in favor of explicit callbacks from menu(). Breadcrumbs, titles, and help text go away as a result of this patch; they will return in the phase 3 patch, printed by the theme.
* - Committed stage 2 of the theme system improvements! Patch by CodeMonkeyX.Dries Buytaert2003-11-09
|
* - Usability improvement: replaced many selection boxes by radio buttons.Dries Buytaert2003-11-07
| | | | Patch by Stefan.
* - Bugfix: fixed problem with search key replacement. Patch by Kjartan.Dries Buytaert2003-10-21
|
* - Committed part 3 of Michael's help system improvements: removed the $helpDries Buytaert2003-10-09
| | | | parameter from the menu() function.
* - Help system improvements: eliminated the _system hook. Patch by Michael.Dries Buytaert2003-10-07
| | | | | | - Bloggerapi module fixes. Patch by Kjartan. - Coding style fixes. Patch by Michael.
* - Help improvements and translation improvements from Michael. Thanks!Dries Buytaert2003-10-03
|
* - Committed a partial administration page integration patch.Dries Buytaert2003-09-19
|
* - Added page titles. Patch 0105 by Kendow.Dries Buytaert2003-09-16
|
* - Noiseword fix. Patch by Matt. Reported by Bart.Dries Buytaert2003-09-10
|
* - 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
|