aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/search/fulltext_postgres.php
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote-tracking branch 'upstream/develop' into ticket/11015Oleg Pudeyev2012-12-061-0/+8
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * upstream/develop: (196 commits) [ticket/11219] Coding guidelines and naming consistency changes [ticket/10841] Revert more whitespace changes. [ticket/10841] Revert whitespace changes. [ticket/10841] adding space after if [ticket/10841] removing unnecessary spacing [ticket/10841] changing affectedrows check to COUNT in sql [ticket/10841] Modifying style and language selectors in UCP [ticket/11247] Fix wrong property reference in flock class. [ticket/10602] Avoid a race condition. [ticket/10602] Use last_queue_run for its intended purpose. [ticket/10716] Collect standard error from executed php process. [ticket/10716] Skip test if php is not in PATH. [ticket/10716] Exclude our dependencies from linting. [ticket/10103] New and improved wording. [ticket/10716] Only lint on php 5.3+. [ticket/10103] Assert with messages. [ticket/10103] assertLessThan/assertGreaterThan. [ticket/10103] Inline assignment is bad? [ticket/10103] $rv had too few characters. [ticket/10103] Correct flock class documentation. ... Conflicts: phpBB/includes/functions.php tests/cache/cache_test.php
| * [ticket/11174] include utf_tools in postgres search backendDhruv2012-11-271-0/+8
| | | | | | | | PHPBB3-11174
* | [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-2/+2
| | | | PHPBB3-10780
* Merge PR #1043 branch 'dhruvgoel92/ticket/11177' into developOleg Pudeyev2012-11-091-0/+6
|\ | | | | | | | | * dhruvgoel92/ticket/11177: [ticket/11177] return no results when query has only negation
| * [ticket/11177] return no results when query has only negationDhruv2012-11-091-0/+6
| | | | | | | | | | | | | | If search query has only -foo then instead of displaying all results that do not have foo, should display no results found. PHPBB3-11177
* | [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-3/+3
| | | | | | | | | | | | Starting of each sentence should be capitalized. PHPBB3-11050
* | [ticket/11050] fix split words doc block languageDhruv2012-11-091-1/+1
| | | | | | | | PHPBB3-11050
* | [ticket/11050] remove class word from docblocksDhruv2012-11-091-3/+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-8/+8
| | | | | | | | | | | | | | No comments should end with a period. All occurences like PostgreSQL should have proper case. PHPBB3-11050
* | [ticket/11050] fix docblocks with description before @varDhruv2012-11-091-3/+6
| | | | | | | | PHPBB3-11050
* | [ticket/11050] add access specifiers to pgsql search propertiesDhruv2012-11-091-3/+61
|/ | | | PHPBB3-11050
* [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 pgsql fulltextDhruv2012-08-141-10/+10
| | | | PHPBB3-11048
* [ticket/11048] add access specifiers to pgsql searchDhruv2012-08-101-46/+14
| | | | PHPBB3-11048
* [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] remove global keyword in pgsql searchDhruv2012-07-281-77/+57
| | | | | | Pass global variables into the search backend class constructor. PHPBB3-11011
* [feature/postgresql-fulltext-search] supports_phrase_search functionDhruv Goel2012-07-081-1/+13
| | | | | | function to return the value of the the private property phrase_search PHPBB3-9730
* [feature/postgresql-fulltext-search] fix formattingDhruv Goel2012-07-051-2/+2
| | | | | | adds proper spaces after control keywords and comment symbol PHPBB3-9730
* [feature/postgresql-fulltext-search] add docblocks to functionsDhruv Goel2012-07-051-5/+54
| | | | | | Docblocks are added to the functions of this search backend. PHPBB3-9730
* [feature/postgresql-fulltext-search] remove phrase search codeDhruv Goel2012-07-051-33/+1
| | | | | | | Unused Code for phrase search removed as pgsql doesnt support it. An added message is displayed if user tries to perform exact phrase search. PHPBB3-9730
* [feature/postgresql-fulltext-search] define access control specifiersDhruv Goel2012-07-051-8/+8
| | | | PHPBB3-9730
* [feature/postgresql-fulltext-search] use version_compareDhruv Goel2012-07-051-5/+5
| | | | | | | version_compare is used for version comparision and pgsql version is now a global variable that is displayed in the acp too. PHPBB3-9730
* [feature/postgresql-fulltext-search] fix language keyDhruv Goel2012-07-051-1/+1
| | | | | | | Language key name not incompatible_database instead of version which was misleading PHPBB3-9730
* [feature/postgresql-fulltext-search] removes pcre checkDhruv Goel2012-07-051-8/+4
| | | | | | | PCRE UTF8 support is already checked globally. adds an option of pgsql version to acp. PHPBB3-9730
* [feature/postgresql-fulltext-search] remove mbstring supportDhruv Goel2012-07-051-81/+8
| | | | | | | Remove the usage of mbstring regex engine when PCRE does not support UTF8 since its a requirement for phpbb 3.1 PHPBB3-9730
* [feature/postgresql-fulltext-search] change language for pgsql < 8.3Dhruv Goel2012-07-051-1/+1
| | | | PHPBB3-9730
* [feature/postgresql-fulltext-search] use phpbb_pcre_utf8_support()Dhruv Goel2012-07-051-6/+3
| | | | | | Use phpBB's built in function for checking PCRE lib support. PHPBB3-9730
* [feature/postgresql-fulltext-search] fix variable nameDhruv Goel2012-07-051-4/+4
| | | | | | | Variable name used is now tsearch_usable instead of tsearch_builtin to reflect its actual purpose. PHPBB3-9730
* [feature/postgresql-fulltext-search] Fix version comparison for 9.0+.Oleg Pudeyev2012-07-051-1/+1
| | | | PHPBB3-9730
* [feature/postgresql-fulltext-search] fixing licenseDhruv Goel2012-07-051-2/+1
| | | | PHPBB3-9730
* [feature/postgresql-fulltext-search] assign empty statsDhruv Goel2012-07-051-0/+6
| | | | | | | Blank array is assigned to stats incase pgsql fulltext search backend is not compatible PHPBB3-9730
* [feature/postgresql-fulltext-search] remove backward compatibilityDhruv Goel2012-07-051-39/+5
| | | | | | | removes backward compatibility before PostgreSQL ver 8.3 if version is before 8.3 displays error. PHPBB3-9730
* [feature/postgresql-fulltext-search] minor changesDhruv Goel2012-07-051-3/+3
| | | | | | | Changes to comply with other backend conventions. include $user as global variable to access it inside init(); PHPBB3-9730
* [feature/postgresql-fulltext-search] minor changesDhruv Goel2012-07-051-6/+12
| | | | | | | Some changes in code to get it work against current develop. PosgreSQL Fulltext search works for new install now. PHPBB3-9730
* [feature/postgresql-fulltext-search] Fixed bracesOleg Pudeyev2012-07-051-6/+8
| | | | | | Fixes braces in fulltext_postgres.php to comply with phpbb conventions. PHPBB3-9730
* [feature/postgresql-fulltext-search] Remove closing php tagOleg Pudeyev2012-07-051-2/+0
| | | | PHPBB3-9730
* [feature/postgresql-fulltext-search] PostgreSQL fulltext search, version 3.we3b2012-06-081-49/+114
| | | | PHPBB3-9730
* [feature/postgresql-fulltext-search] PostgreSQL fulltext search, version 2.wagnerch2012-06-081-52/+24
| | | | PHPBB3-9730
* [feature/postgresql-fulltext-search] PostgreSQL fulltext search, version 1.wagnerch2012-06-081-0/+893
PHPBB3-9730