Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [feature/sphinx-fulltext-search] fix auth bug | Dhruv | 2012-07-27 | 1 | -1/+1 |
| | | | | | | $this->auth replaces $auth as at other occurences of auth. PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] remove unused property | Dhruv | 2012-07-27 | 1 | -1/+0 |
| | | | | | | Removes unused property $word_length PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] use 9312 as default port | Dhruv | 2012-07-27 | 2 | -5/+5 |
| | | | | | | | | Uses 9312 instead of 3312 as default port for searchd to listen on according to latest sphinx documentation. Use filename sphinxapi.php instead of old one. PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] fix language of host config | Dhruv | 2012-07-27 | 1 | -3/+3 |
| | | | | PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] fix sphinx for arbitary host | Dhruv | 2012-07-26 | 1 | -4/+4 |
| | | | | PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] coding changes acc to phbb conventions | Dhruv | 2012-07-26 | 1 | -2/+12 |
| | | | | | | Add a new line after break. Change docblocks to be more informative. PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] fixing comments | Dhruv | 2012-07-26 | 2 | -18/+18 |
| | | | | | | Use // for two liners in comments. PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] add trailing slash in language | Dhruv | 2012-07-26 | 1 | -1/+1 |
| | | | | PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] improve port option | Dhruv | 2012-07-22 | 3 | -8/+6 |
| | | | | | | | Use listen instead of deprecated port value in sphinx config file. sqlhost uses default $dbhost. PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] remove stopwords and config path | Dhruv | 2012-07-22 | 2 | -16/+2 |
| | | | | | | Remove stopwords and config_path options from ACP. PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] makes sql host configurable | Dhruv | 2012-07-22 | 3 | -4/+11 |
| | | | | | | | 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 disabled | Dhruv | 2012-07-22 | 1 | -1/+1 |
| | | | | PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] fix language keys' typo | Dhruv | 2012-07-22 | 1 | -4/+4 |
| | | | | PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] remove note from db_tools | Dhruv | 2012-07-21 | 1 | -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 postgres | Dhruv | 2012-07-19 | 1 | -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 functionality | Dhruv | 2012-07-19 | 2 | -2/+2 |
| | | | | PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] use Update in sphinx query | Dhruv | 2012-07-19 | 2 | -4/+11 |
| | | | | | | | | 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 IF | Dhruv | 2012-07-19 | 2 | -4/+4 |
| | | | | | | | 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.conf | Dhruv | 2012-07-19 | 2 | -3/+3 |
| | | | | PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] use sql_table_exists | Dhruv | 2012-07-19 | 1 | -6/+1 |
| | | | | | | Use sql_table_exists( ) method in db_tools to support all database types. PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] modify language keys | Dhruv | 2012-07-19 | 2 | -8/+5 |
| | | | | | | | Modify language keys according to what the config setting actually does. Remove references to autoconf. PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] improve sphinx helper classes | Dhruv | 2012-07-19 | 4 | -11/+50 |
| | | | | | | | add access modifiers and docblocks to properties and methods of sphinx helper classes. PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] fix comments and indentation | Dhruv | 2012-07-19 | 2 | -5/+5 |
| | | | | PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] use new unique id instead of salt | Dhruv | 2012-07-19 | 2 | -15/+16 |
| | | | | | | | 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 ACP | Dhruv | 2012-07-19 | 2 | -9/+16 |
| | | | | | | | 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_path | Dhruv Goel | 2012-07-19 | 2 | -8/+0 |
| | | | | | | fulltext_sphinx_bin_path from ACP as it is no longer required. PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] modify config class | Dhruv Goel | 2012-07-19 | 2 | -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 formatting | Dhruv Goel | 2012-07-19 | 1 | -8/+8 |
| | | | | PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] fix comments | Dhruv Goel | 2012-07-19 | 3 | -39/+53 |
| | | | | PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] remove recent search queries | Dhruv Goel | 2012-07-19 | 2 | -14/+1 |
| | | | | | | | 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_tools | Dhruv Goel | 2012-07-19 | 1 | -8/+19 |
| | | | | | | Use db_tools class for creating/dropping sphinx table. PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] assign all globals to class properties | Dhruv Goel | 2012-07-19 | 1 | -70/+56 |
| | | | | PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] adds default config values | Dhruv Goel | 2012-07-19 | 3 | -18/+12 |
| | | | | | | | Default config values are added to config table in new install as well as database_update. PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] remove unnecessary code | Dhruv Goel | 2012-07-12 | 1 | -20/+5 |
| | | | | | | Some extra conditions and variables used in autoconf are removed. PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] fix stopwords option | Dhruv Goel | 2012-07-12 | 1 | -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 names | Dhruv Goel | 2012-07-12 | 1 | -7/+7 |
| | | | | | | All constant names are prefixed with SPHINX_ PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] remove autoconf | Dhruv Goel | 2012-07-12 | 1 | -385/+1 |
| | | | | | | | Remove all code related to sphinx automatic configuration and all exec calls. PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] add docblock and access modifiers | Dhruv Goel | 2012-07-12 | 1 | -15/+70 |
| | | | | | | | | PHPBB3-10946 Conflicts: phpBB/includes/search/fulltext_sphinx.php | ||||
* | [feature/sphinx-fulltext-search] add class properties indexes & sphinx | Dhruv Goel | 2012-07-12 | 1 | -0/+2 |
| | | | | PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] use keywords_search instead of get_name | Dhruv Goel | 2012-07-12 | 1 | -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 arrays | Dhruv Goel | 2012-07-12 | 1 | -8/+1 |
| | | | | PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] add sphinx_table constant to constants.php | Dhruv Goel | 2012-07-12 | 2 | -1/+1 |
| | | | | PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] Make different files for different classes | Dhruv Goel | 2012-07-12 | 5 | -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 config | Dhruv Goel | 2012-07-12 | 2 | -0/+2 |
| | | | | | | binlog files are now added to the data folder. PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] use sql_build_query for query | Dhruv Goel | 2012-07-12 | 1 | -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 returns | Dhruv Goel | 2012-07-12 | 2 | -9/+9 |
| | | | | PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] integrate sphinx language keys with core | Dhruv Goel | 2012-07-12 | 3 | -71/+30 |
| | | | | | | | 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.php | Dhruv Goel | 2012-07-12 | 1 | -21/+17 |
| | | | | PHPBB3-10946 | ||||
* | [feature/sphinx-fulltext-search] fix config variables | Dhruv Goel | 2012-07-12 | 1 | -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-api | Dhruv Goel | 2012-07-12 | 1 | -1202/+0 |
| | | | | | | also need to add the latest sphinx api instead of this. PHPBB3-10946 |