aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
Commit message (Collapse)AuthorAgeFilesLines
* [feature/sphinx-fulltext-search] remove stopwords and config pathDhruv2012-07-221-12/+2
| | | | | | Remove stopwords and config_path options from ACP. PHPBB3-10946
* [feature/sphinx-fulltext-search] makes sql host configurableDhruv2012-07-221-2/+7
| | | | | | | The SQL server host which sphinx connects to index the posts is now configurable via ACP. PHPBB3-10946
* [feature/sphinx-fulltext-search] use readonly instead of disabledDhruv2012-07-221-1/+1
| | | | PHPBB3-10946
* [feature/sphinx-fulltext-search] remove note from db_toolsDhruv2012-07-211-1/+0
| | | | | | | Note saying db_tools not being used currently is remove from db_tools.php We utilize db_tools in sphinx search. PHPBB3-10946
* [feature/sphinx-fulltext-search] add support for postgresDhruv2012-07-191-3/+20
| | | | | | | Don't generate sphinx config file if database is not supported. Add property $dbtype to write into sphinx config file according to sql_layer. PHPBB3-10946
* [feature/sphinx-fulltext-search] add pgsql functionalityDhruv2012-07-191-1/+1
| | | | PHPBB3-10946
* [feature/sphinx-fulltext-search] use Update in sphinx queryDhruv2012-07-191-2/+9
| | | | | | | | Instead of REPLACE use UPDATE since pgsql does not support REPLACE. A row is inserted at time of creating table so REPLACE is no longer needed. PHPBB3-10946
* [feature/sphinx-fulltext-search] use CASE instead of IFDhruv2012-07-191-2/+2
| | | | | | | IF is not supported in pgsql, use CASE instead supported in both mysql and pgsql. PHPBB3-10946
* [feature/sphinx-fulltext-search] minor changes in sphinx.confDhruv2012-07-191-1/+1
| | | | PHPBB3-10946
* [feature/sphinx-fulltext-search] use sql_table_existsDhruv2012-07-191-6/+1
| | | | | | Use sql_table_exists( ) method in db_tools to support all database types. PHPBB3-10946
* [feature/sphinx-fulltext-search] modify language keysDhruv2012-07-191-2/+1
| | | | | | | Modify language keys according to what the config setting actually does. Remove references to autoconf. PHPBB3-10946
* [feature/sphinx-fulltext-search] improve sphinx helper classesDhruv2012-07-194-11/+50
| | | | | | | add access modifiers and docblocks to properties and methods of sphinx helper classes. PHPBB3-10946
* [feature/sphinx-fulltext-search] fix comments and indentationDhruv2012-07-192-5/+5
| | | | PHPBB3-10946
* [feature/sphinx-fulltext-search] use new unique id instead of saltDhruv2012-07-191-7/+8
| | | | | | | a new unique id is generated by sphinx and stored in the config table instead of using avatar_salt. PHPBB3-10946
* [feature/sphinx-fulltext-search] display config file in ACPDhruv2012-07-191-9/+13
| | | | | | | sphinx config file is generated and displayed in the ACP for user to use it to start sphinx search daemon. PHPBB3-10946
* [feature/sphinx-fulltext-search] remove bin_pathDhruv Goel2012-07-191-5/+0
| | | | | | fulltext_sphinx_bin_path from ACP as it is no longer required. PHPBB3-10946
* [feature/sphinx-fulltext-search] modify config classDhruv Goel2012-07-192-158/+145
| | | | | | | | Sphinx config class is modified to return the configuration data instead of writing it to a file. Search backend property config_file_data stores the generated data. PHPBB3-10946
* [feature/sphinx-fulltext-search] improve formattingDhruv Goel2012-07-191-8/+8
| | | | PHPBB3-10946
* [feature/sphinx-fulltext-search] fix commentsDhruv Goel2012-07-193-39/+53
| | | | PHPBB3-10946
* [feature/sphinx-fulltext-search] remove recent search queriesDhruv Goel2012-07-191-3/+0
| | | | | | | remove recent search queries from the stats as they can't be retreived and remove other language keys being used no more. PHPBB3-10946
* [feature/sphinx-fulltext-search] implementing db_toolsDhruv Goel2012-07-191-8/+19
| | | | | | Use db_tools class for creating/dropping sphinx table. PHPBB3-10946
* [feature/sphinx-fulltext-search] assign all globals to class propertiesDhruv Goel2012-07-191-70/+56
| | | | PHPBB3-10946
* [feature/sphinx-fulltext-search] adds default config valuesDhruv Goel2012-07-191-18/+0
| | | | | | | Default config values are added to config table in new install as well as database_update. PHPBB3-10946
* [feature/sphinx-fulltext-search] remove unnecessary codeDhruv Goel2012-07-121-20/+5
| | | | | | Some extra conditions and variables used in autoconf are removed. PHPBB3-10946
* [feature/sphinx-fulltext-search] fix stopwords optionDhruv Goel2012-07-121-24/+4
| | | | | | | Stopwords option can be configured in ACP to generate correct sphinx config file. PHPBB3-10946
* [feature/sphinx-fulltext-search] prefix sphinx with constant namesDhruv Goel2012-07-121-7/+7
| | | | | | All constant names are prefixed with SPHINX_ PHPBB3-10946
* [feature/sphinx-fulltext-search] remove autoconfDhruv Goel2012-07-121-385/+1
| | | | | | | Remove all code related to sphinx automatic configuration and all exec calls. PHPBB3-10946
* [feature/sphinx-fulltext-search] add docblock and access modifiersDhruv Goel2012-07-121-15/+70
| | | | | | | | PHPBB3-10946 Conflicts: phpBB/includes/search/fulltext_sphinx.php
* [feature/sphinx-fulltext-search] add class properties indexes & sphinxDhruv Goel2012-07-121-0/+2
| | | | PHPBB3-10946
* [feature/sphinx-fulltext-search] use keywords_search instead of get_nameDhruv Goel2012-07-121-1/+1
| | | | | | | using keyword_search method instead of get_name to distinguish between the search backend classes present in includes/search and other helper classes. PHPBB3-10946
* [feature/sphinx-fulltext-search] remove unused arraysDhruv Goel2012-07-121-8/+1
| | | | PHPBB3-10946
* [feature/sphinx-fulltext-search] add sphinx_table constant to constants.phpDhruv Goel2012-07-122-1/+1
| | | | PHPBB3-10946
* [feature/sphinx-fulltext-search] Make different files for different classesDhruv Goel2012-07-125-239/+280
| | | | | | | | | | | Break the classes in functions-sphinx.php into different files with proper class names according to phpbb class auto loader conventions. PHPBB3-10946 Conflicts: phpBB/includes/search/sphinx/config.php
* [feature/sphinx-fulltext-search] add binlog_path to configDhruv Goel2012-07-121-0/+1
| | | | | | binlog files are now added to the data folder. PHPBB3-10946
* [feature/sphinx-fulltext-search] use sql_build_query for queryDhruv Goel2012-07-121-7/+17
| | | | | | | | | | | Uses sql_build_query for JOIN query. Remove casting to int and space for phpbb conventions to be followed PHPBB3-10946 Conflicts: phpBB/includes/search/fulltext_sphinx.php
* [feature/sphinx-fulltext-search] remove all reference returnsDhruv Goel2012-07-122-9/+9
| | | | PHPBB3-10946
* [feature/sphinx-fulltext-search] integrate sphinx language keys with coreDhruv Goel2012-07-121-6/+0
| | | | | | | Language keys removed from mods folder and added to language/en/acp/search.php PHPBB3-10946
* [feature/sphinx-fulltext-search] improve classes in functions-sphinx.phpDhruv Goel2012-07-121-21/+17
| | | | PHPBB3-10946
* [feature/sphinx-fulltext-search] fix config variablesDhruv Goel2012-07-121-8/+8
| | | | | | | | | | config variables now use class property for unique id PHPBB3-10946 Conflicts: phpBB/includes/search/fulltext_sphinx.php
* [feature/sphinx-fulltext-search] temporary commit to pull out sphinx-apiDhruv Goel2012-07-121-1202/+0
| | | | | | also need to add the latest sphinx api instead of this. PHPBB3-10946
* [feature/sphinx-fulltext-search] minor fixes in formattingDhruv Goel2012-07-123-8/+4
| | | | | | | Add a newline at the end of files. Update License information in package docbloc. PHPBB3-10946
* [feature/sphinx-fulltext-search] update config fileDhruv Goel2012-07-121-2/+3
| | | | | | Sphinx config file updated according to new documentation. PHPBB3-10946
* [feature/sphinx-fulltext-search] minor changesDhruv Goel2012-07-121-14/+18
| | | | | | | some minor code changes to make it working against current develop and comply with other search backend coding convetions. PHPBB3-10946
* [feature/sphinx-fulltext-search] MOD by naderman installed in phpbbDhruv Goel2012-07-123-0/+2875
| | | | PHPBB3-10946
* Merge PR #856 branch 'develop-olympus' into developOleg Pudeyev2012-07-072-5/+52
|\ | | | | | | | | | | * develop-olympus: [ticket/10937] Update documentation to say which comment styles are removed. [ticket/10937] Comment removal functions: Restore backward compatibility
| * Merge PR #856 branch 'prep-release-3.0.11' into develop-olympusOleg Pudeyev2012-07-072-5/+52
| |\ | | | | | | | | | | | | | | | * prep-release-3.0.11: [ticket/10937] Update documentation to say which comment styles are removed. [ticket/10937] Comment removal functions: Restore backward compatibility
| | * Merge PR #856 branch 'bantu/ticket/10937' into prep-release-3.0.11Oleg Pudeyev2012-07-072-5/+52
| | |\ | | | | | | | | | | | | | | | | | | | | * bantu/ticket/10937: [ticket/10937] Update documentation to say which comment styles are removed. [ticket/10937] Comment removal functions: Restore backward compatibility
| | | * [ticket/10937] Update documentation to say which comment styles are removed.Andreas Fischer2012-07-031-1/+1
| | | | | | | | | | | | | | | | PHPBB3-10937
| | | * [ticket/10937] Comment removal functions: Restore backward compatibilityAndreas Fischer2012-07-032-5/+52
| | | | | | | | | | | | | | | | PHPBB3-10937
* | | | Merge PR #832 branch 'dhruvgoel92/feature/postgresql-fulltext-search' into ↵Oleg Pudeyev2012-07-071-0/+856
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | develop * dhruvgoel92/feature/postgresql-fulltext-search: (28 commits) [feature/postgresql-fulltext-search] supports_phrase_search function [feature/postgresql-fulltext-search] use proper variable name [feature/postgresql-fulltext-search] each config is checked if it is set [feature/postgresql-fulltext-search] fix formatting [feature/postgresql-fulltext-search] add docblocks to functions [feature/postgresql-fulltext-search] remove phrase search code [feature/postgresql-fulltext-search] define access control specifiers [feature/postgresql-fulltext-search] use version_compare [feature/postgresql-fulltext-search] fix language key [feature/postgresql-fulltext-search] remove Readme [feature/postgresql-fulltext-search] removes pcre check [feature/postgresql-fulltext-search] fix language tsearch2 to text search [feature/postgresql-fulltext-search] remove mbstring support [feature/postgresql-fulltext-search] change language for pgsql < 8.3 [feature/postgresql-fulltext-search] use phpbb_pcre_utf8_support() [feature/postgresql-fulltext-search] fix variable name [feature/postgresql-fulltext-search] Fix version comparison for 9.0+. [feature/postgresql-fulltext-search] fixing license [feature/postgresql-fulltext-search] assign empty stats [feature/postgresql-fulltext-search] remove backward compatibility ...