aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/search/fulltext_native.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/11015] Change more docblocks.Oleg Pudeyev2012-12-041-2/+2
| | | | PHPBB3-11015
* [ticket/10780] Use L_COLON on search backend ACP pages.Andreas Fischer2012-11-101-4/+4
| | | | PHPBB3-10780
* [ticket/11050] make all properties protected in all search backendsDhruv2012-11-091-3/+3
| | | | PHPBB-11050
* [ticket/11050] fix tidied search query docblock languageDhruv2012-11-091-1/+2
| | | | PHPBB3-11050
* [ticket/11050] fix min/max length docblock languageDhruv2012-11-091-1/+1
| | | | PHPBB3-11050
* [ticket/11050] multi sentences separated by period in docblocksDhruv2012-11-091-2/+2
| | | | | | Starting of each sentence should be capitalized. PHPBB3-11050
* [ticket/11050] remove class word from docblocksDhruv2012-11-091-3/+3
| | | | PHPBB3-11050
* [ticket/11050] add missing @var in native searchDhruv2012-11-091-0/+3
| | | | PHPBB3-11050
* [ticket/11050] replace user by phpbb_userDhruv2012-11-091-1/+1
| | | | PHPBB3-11050
* [ticket/11050] fix minor comment/docblocks issuesDhruv2012-11-091-7/+7
| | | | | | | No comments should end with a period. All occurences like PostgreSQL should have proper case. PHPBB3-11050
* [ticket/11050] add access specifiers to native search propertiesDhruv2012-11-091-3/+58
| | | | PHPBB3-11050
* [ticket/11174] Started on search tests - keyword splitting.Oleg Pudeyev2012-11-081-0/+4
| | | | PHPBB3-11174
* [ticket/11051] fix spacesDhruv2012-10-081-3/+3
| | | | PHPBB3-11051
* [ticket/11051] add public functions for public propertiesDhruv2012-08-151-3/+33
| | | | | | | public retrieval functions for all public properties and change the properties to protected in all search backends. PHPBB3-11051
* [ticket/11048] use protected instead of private in native searchDhruv2012-08-141-11/+11
| | | | PHPBB3-11048
* [ticket/11048] remove @access from all docblocksDhruv2012-08-141-10/+0
| | | | PHPBB3-11048
* [ticket/11048] add access specifiers to phpbb native search propertiesDhruv2012-08-101-8/+8
| | | | PHPBB3-11048
* [ticket/11048] add access specifiers to phpbb native searchDhruv2012-08-101-13/+13
| | | | PHPBB3-11048
* [ticket/11011] rename property phpEx to php_extDhruv2012-08-081-4/+4
| | | | PHPBB3-11011
* [ticket/11011] pass $auth to search backend constructorDhruv2012-08-081-1/+1
| | | | | | | $auth global var is passed to search backend constructor, as it is used by sphinx backend. PHPBB3-11011
* [ticket/11011] passing global variablesDhruv2012-07-281-4/+0
| | | | | | Pass global variables to class constructor when making a new object. PHPBB3-11011
* [ticket/11011] remove global keyword in native searchDhruv2012-07-281-142/+132
| | | | | | Pass global variables into the search backend class constructor. PHPBB3-11011
* [ticket/10990] Changes for developNathan Guse2012-07-221-1/+1
| | | | PHPBB3-10990
* Merge branch 'develop-olympus' into developOleg Pudeyev2012-03-081-11/+2
|\ | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/10653] Call get_row_count of base class in mysql get_estimated_row_count [ticket/9813] Only get posts table row count if we detected a fulltext index. [ticket/9813] Also use estimated row count of posts table for fulltext mysql. [ticket/10653] Fix parameter to substr() in unit tests. Should be 1, not -1. [ticket/10653] Unit tests for get_row_count() and get_estimated_row_count(). [ticket/10653] Add ability to count table rows to database abstraction layer. [ticket/9813] Use table status row count only if greater than 100000 or exact. [ticket/9813] Use SHOW TABLE STATUS to get search stats for native on MySQL.
| * [ticket/10653] Add ability to count table rows to database abstraction layer.Andreas Fischer2012-03-031-44/+2
| | | | | | | | PHPBB3-10653
| * [ticket/9813] Use table status row count only if greater than 100000 or exact.Andreas Fischer2012-03-031-26/+41
| | | | | | | | PHPBB3-9813
| * [ticket/9813] Use SHOW TABLE STATUS to get search stats for native on MySQL.Andreas Fischer2012-03-031-10/+28
| | | | | | | | PHPBB3-9813
* | Merge branch 'develop-olympus' into developAndreas Fischer2012-02-251-1/+1
|\ \ | |/ | | | | | | | | * develop-olympus: [ticket/10630] Use sql_like_expression() method instead of hardcoded LIKE '%x%' [ticket/10630] Perform array_unique on authors array before creating the query
| * [ticket/10630] Perform array_unique on authors array before creating the queryJoas Schilling2012-02-201-1/+1
| | | | | | | | | | | | | | This is needed to avoid an additional appearance for an author for every post he made. PHPBB3-10630
* | [ticket/9916] Updating header license and removing Version $Id$Unknown2011-12-311-2/+1
| | | | | | | | PHPBB3-9916
* | [feature/extension-manager] Add docblocks to new search backend methodsNils Adermann2011-11-181-1/+6
| | | | | | | | PHPBB3-10323
* | [feature/extension-manager] Make search backends loadable from extensionsNils Adermann2011-09-291-10/+7
| | | | | | | | | | | | | | | | Search backends are now required to be autoloadable. The database updater to 3.1 tries to guess the class name as phpbb_search_<oldname> which works for the default backends we ship. PHPBB3-10323
* | [ticket/9556] Drop php closing tags, add trailing newlineIgor Wiedler2010-11-111-2/+0
|/ | | | | | | | | | | | Closing tags converted using Oleg's script. remove-php-end-tags.py -a . Trailing newlines added using the following where $ext is file extension. find . -type f -name "*.$ext" -print | xargs printf "e %s\nw\n" | ed -s; Extensions: php, css, html, js, xml. PHPBB3-9556
* [ticket/9760] Remove unrestricted wildcards from search terms.Chris Smith2010-08-081-1/+12
| | | | | | | | Wildcards without any further result restrictions will cause phpBB to search for everything, potentially allowing a DoS attack against the DB server by any user who can use the search system. PHPBB3-9760
* Safe us some more calls to $db->sql_escape().Andreas Fischer2010-01-111-2/+2
| | | | | | | Authorised by: naderman :-P git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10399 89ea8834-ac86-4346-8a33-228a782c2dd0
* Improved search query performance through sorting words by their occurance. ↵Nils Adermann2009-12-231-8/+13
| | | | | | [Bug #21555] git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10377 89ea8834-ac86-4346-8a33-228a782c2dd0
* fix r9713 for #36565Joas Schilling2009-08-051-4/+2
| | | | | | Authorised by: AcydBurn git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9931 89ea8834-ac86-4346-8a33-228a782c2dd0
* Fix bug #36565 - Search by authorname does not display posts of guests and ↵Joas Schilling2009-07-021-24/+47
| | | | | | | | | deleted users Authorised by: naderman git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9713 89ea8834-ac86-4346-8a33-228a782c2dd0
* Search for 'topic title only' and 'first post' should work again for ↵Meik Sievertsen2009-04-181-0/+8
| | | | | | non-mysql dbms. (Bug #40605) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9473 89ea8834-ac86-4346-8a33-228a782c2dd0
* Fix topic title only and first post search option with the ↵Meik Sievertsen2009-04-181-6/+6
| | | | | | SQL_CALC_FOUND_ROWS fix git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9472 89ea8834-ac86-4346-8a33-228a782c2dd0
* erm, forgot to globalize $config. :/Meik Sievertsen2009-04-181-1/+1
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9471 89ea8834-ac86-4346-8a33-228a782c2dd0
* [Change] Performance improvements for native fulltext search (patch by Paul)Meik Sievertsen2009-04-111-3/+19
| | | | | | (This has been tested for 2 weeks in a live environment) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9440 89ea8834-ac86-4346-8a33-228a782c2dd0
* New search option: Maximum number of words allowed to search for.Meik Sievertsen2009-04-111-2/+9
| | | | | | (the more words the more database load) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9438 89ea8834-ac86-4346-8a33-228a782c2dd0
* not quiteNils Adermann2008-12-041-1/+1
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9173 89ea8834-ac86-4346-8a33-228a782c2dd0
* Use a left join for the topics table on search to avoid trouble with FROM ↵Nils Adermann2008-12-041-11/+12
| | | | | | syntax on some databases (Bug #37005) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9172 89ea8834-ac86-4346-8a33-228a782c2dd0
* Tell users to recreate the search index after changing the common word ↵Nils Adermann2008-11-261-1/+1
| | | | | | threshold for fulltext_native (Bug #36345) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9126 89ea8834-ac86-4346-8a33-228a782c2dd0
* cleanup, related to bug #19195Meik Sievertsen2008-09-181-2/+0
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8879 89ea8834-ac86-4346-8a33-228a782c2dd0
* Fix native full text search on postgresql while using excluding keyword ↵Meik Sievertsen2008-09-181-3/+6
| | | | | | matches. (Bug #19195) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8878 89ea8834-ac86-4346-8a33-228a782c2dd0
* Topic searches by author no longer return invalid results [Bug #11777]Nils Adermann2008-06-041-3/+3
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8604 89ea8834-ac86-4346-8a33-228a782c2dd0
* removed executable props [Bug #6464]Nils Adermann2008-06-041-0/+0
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8598 89ea8834-ac86-4346-8a33-228a782c2dd0