Dhruv
67939192ae
[ticket/11051] remove unnecessary comment
...
PHPBB3-11051
2012-10-04 23:17:18 +05:30
Dhruv
52b25aaf20
[ticket/11051] add get_word_len() in sphinx search
...
get_word_len() for sphinx search backend returns false always and
triggers proper error.
PHPBB3-11051
2012-10-04 01:51:57 +05:30
Joas Schilling
b629b2cd95
[feature/soft-delete] Add unit tests for get_global_visibility_sql()
...
PHPBB3-9657
2012-10-01 22:44:39 +02:00
Joas Schilling
c03d692a98
[feature/soft-delete] Fix some more usages of _approved column names
...
PHPBB3-9657
2012-08-30 22:57:00 +02:00
Joas Schilling
a6d3432f8b
[feature/soft-delete] Update search to use $post_visibility
...
Todo: Sphinx currently does not respect this setting at all.
PHPBB3-9657
2012-08-30 22:20:52 +02:00
Joas Schilling
5b54ec2d64
[feature/soft-delete] Try to fix search.php
...
at least it's running now, but the performance is not very good.
PHPBB3-9657
2012-08-30 19:47:16 +02:00
Josh Woody
a80cfafdd9
[feature/soft-delete] Rename phpbb_visibility class to phpbb_content_visibility
...
Rename the class to more accurately reflect what it does.
PHPBB3-9657
2012-08-29 17:50:11 +02:00
Josh Woody
c32d760806
[feature/soft-delete] I told you I was going to rename the class!
...
Rename topic_visibility class to phpbb_visibility. Also a bit of work to the class itself, mostly cleanup and adding the comments that I'd previously written.
PHPBB3-9657
2012-08-29 17:49:38 +02:00
Josh Woody
b8c55291ed
[feature/soft-delete] Lay the groundwork for a soft-delete feature
...
So far, I've added no new functionality. The biggest change here is adjusting the DB column names to "visibility" rather than "approved". Some things here are pretty likely to change, for example the name and location of the topic_visibility class. Happy birthday phpBB :)
PHPBB3-9657
2012-08-29 17:49:37 +02:00
Dhruv
a2e1989b01
[ticket/11051] use get_word_length in search backend
...
Use get_word_length() instead od accessing the word_length property
directly as it is now protected.
PHPBB3-11051
2012-08-17 00:11:32 +05:30
Dhruv
9b9dc2fab7
[ticket/11051] use get_common_words in search backend
...
Use get_common_words() instead of accessing the common_words property
directly as it is now protected.
PHPBB3-11051
2012-08-16 23:17:06 +05:30
Dhruv
7402328b81
[ticket/11051] function instead of accessing property in search
...
Use get_search_query() instead of accessing the search_query property
directly as it is now protected.
PHPBB3-11051
2012-08-16 23:16:58 +05:30
Dhruv Goel
2ba1cef5b0
[ticket/10943] displays searched query in search result
...
Search backend displays an additional normalized search query just above
the ignored words.
PHPBB3-10943
2012-08-11 02:26:46 +05:30
Dhruv Goel
83a4d9abb5
[ticket/10943] use keywords variable to display in search box
...
$keywords which contains the string as entered by the user should be used
to display in search box instead of search_query.
PHPBB3-10943
2012-08-11 02:21:14 +05:30
Dhruv
794d6ec443
[ticket/11011] pass $auth to search backend constructor
...
$auth global var is passed to search backend constructor, as it is used
by sphinx backend.
PHPBB3-11011
2012-08-08 11:07:47 +05:30
Dhruv
2e218776bb
[ticket/11011] passing global variables
...
Pass global variables to class constructor when making a new object.
PHPBB3-11011
2012-07-28 18:28:51 +05:30
Drae
584d49459d
[feature/pagination-as-list] New parameter for name of start var
...
Add a new parameter to hold the name of the start variable. This
fulfills ticket PHPBB3-8535.
PHPBB3-10968
2012-07-18 14:32:42 +01:00
Drae
27d8aef528
[feature/pagination-as-list] Updates for nils comments
...
Re-remove deprecated functions, change on_page to phpbb_on_page,
add null returns, remove globals and pass as params.
PHPBB3-10968
2012-07-18 14:32:18 +01:00
Drae
cf4d6e926d
[feature/pagination-as-list] Rename and deprecate functions
...
Returned and marked deprecated topic_generate_pagination. Rename
new function in line with coding guidelines.
PHPBB3-10968
2012-07-18 14:31:50 +01:00
Drae
dc71c0629e
[feature/pagination-as-list] Various fixes and improvements
...
Extracted common template code for prosilver as per subsilver2.
Various other fixups and oversight corrections, changed name
of the "new" template function and re-introduced existing
version. Altered on_page to compensate for removal of some
templating vars from pagination routine.
PHPBB3-10968
2012-07-18 14:31:21 +01:00
Drae
922147f05a
[ticket/10968] Render pagination within the template
...
Since phpBB 2 pagination has been rendered mostly within the source. This
limits just what designers can do with pagination. The current form is also
questionable in terms of "best practice". The aim is to move rendering
completely to the template via the use of a block element. Enabling S_
template vars also allows for control over specific aspects of the
pagination output such as next, previous, active and ellipsis.
Related to this - merging the capabilities of the topic_generate_pagination
with generate_pagination removes an element of duplication.
PHPBB3-10968
2012-07-18 14:30:20 +01:00
Oleg Pudeyev
576cd6dd1e
Merge PR #854 branch 'dhruvgoel92/ticket/10943' into develop
...
* dhruvgoel92/ticket/10943:
[ticket/10943] displays searched query in search result
[ticket/10943] use keywords variable to display in search box
2012-07-07 21:30:42 -04:00
Dhruv Goel
b98be2f235
[ticket/10943] displays searched query in search result
...
Search backend displays an additional normalized search query just above
the ignored words.
PHPBB3-10943
2012-07-08 02:51:58 +05:30
Dhruv Goel
615f32cd71
[ticket/10943] use keywords variable to display in search box
...
$keywords which contains the string as entered by the user should be used
to display in search box instead of search_query.
PHPBB3-10943
2012-07-08 02:51:26 +05:30
Dhruv Goel
70a0caee28
[feature/postgresql-fulltext-search] supports_phrase_search function
...
function to return the value of the the private property phrase_search
PHPBB3-9730
2012-07-08 01:38:53 +05:30
Dhruv Goel
7a2d36a25e
[feature/postgresql-fulltext-search] use proper variable name
...
PHPBB3-9730
2012-07-08 01:38:38 +05:30
Dhruv Goel
bc699f66cf
[feature/postgresql-fulltext-search] fix formatting
...
adds proper spaces after control keywords and comment symbol
PHPBB3-9730
2012-07-05 21:17:26 +05:30
Dhruv Goel
19d76f76dc
[feature/postgresql-fulltext-search] remove phrase search code
...
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
2012-07-05 21:17:23 +05:30
Andreas Fischer
af23811c6d
Merge branch 'develop-olympus' into develop
...
* develop-olympus:
[ticket/10532] Remove unnecessary parentheses around calculations of addition.
[ticket/10532] Remove one unnecessary level of if block nesting.
[ticket/10532] Get rid of inline calculation of $start, remove duplicated check
[ticket/10532] Put $total_match_count assignment onto its own line.
[ticket/10532] Adjust total match count and limit
[ticket/10532] Fix $start out of range for pre-made searches
Conflicts:
phpBB/search.php
2012-02-26 15:47:16 +01:00
Andreas Fischer
7a061cfc6e
[ticket/10532] Remove unnecessary parentheses around calculations of addition.
...
PHPBB3-10532
2012-02-26 02:30:44 +01:00
Andreas Fischer
6548a3094f
[ticket/10532] Remove one unnecessary level of if block nesting.
...
PHPBB3-10532
2012-02-26 02:19:12 +01:00
Andreas Fischer
459e8dc095
[ticket/10532] Get rid of inline calculation of $start, remove duplicated check
...
PHPBB3-10532
2012-02-26 02:15:39 +01:00
Andreas Fischer
8f3fba8858
[ticket/10532] Put $total_match_count assignment onto its own line.
...
PHPBB3-10532
2012-02-26 01:58:17 +01:00
rxu
cb7bb31129
[ticket/10532] Adjust total match count and limit
...
Set a variable for the limit of total matches count.
Adjust total match count to limit to provide proper $start value calculation.
Adjust $start value if no matches were found.
PHPBB3-10532
2012-01-14 16:09:04 +08:00
rxu
c9733ad719
[ticket/10532] Fix $start out of range for pre-made searches
...
PHPBB3-10532
2012-01-14 15:55:23 +08:00
Unknown
7a04c9048c
[ticket/9916] Updating header license and removing Version $Id$
...
PHPBB3-9916
2011-12-31 13:32:52 +00:00
Joas Schilling
179662e949
[ticket/10345] Use the plural function in some more places.
...
I added two function avatar_explanation_string() and avatar_error_wrong_size()
for easier handling of the "pixels"-languages, as they are used quite often.
PHPBB3-10345
2011-11-25 15:10:49 -05:00
Joas Schilling
88ae40a4b1
[ticket/10345] Make use of the plural function in some basic places
...
PHPBB3-10345
2011-11-25 15:10:44 -05:00
Nils Adermann
dcc5ca5377
[feature/extension-manager] Make search backends loadable from extensions
...
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
2011-09-29 15:42:40 +02:00
Vjacheslav Trushkin
830c3f4047
[feature/remove-imagesets] Adjustments to php files
...
Removing imagesets. Adjustments to php files
PHPBB3-10336
2011-09-04 01:08:00 +03:00
rxu
b88582199d
[ticket/9851] "Search new posts" should require login.
...
The newposts search uses user_lastvisit, so it should require user to log in.
PHPBB3-9851
2010-12-13 14:58:43 +01:00
Igor Wiedler
9015e03d05
Merge branch 'ticket/bantu/9613' into develop-olympus
...
* ticket/bantu/9613:
[ticket/9613] Slightly update language strings.
[ticket/9613] Fix missing database part for unread posts search load switch.
[ticket/9613] Implement a load switch for unread posts search feature.
2010-09-16 22:34:48 +02:00
Igor Wiedler
e51e7701cd
Merge branch 'ticket/bantu/9754' into develop-olympus
...
* ticket/bantu/9754:
[ticket/9754] Populate S_USER_POSTED variable with correct value in search.php
2010-09-12 13:11:21 +02:00
rxu
f1d5005797
[ticket/9613] Implement a load switch for unread posts search feature.
...
Since unread posts search can produce a high server load in certain
circumstances, we implement a switch for ACP "Load settings" to have an option
to disable this type of search.
PHPBB3-9613
2010-08-29 16:09:09 +02:00
Josh Woody
c901a9eb70
[ticket/9662] Search flood interval no longer applies to non-keyword searches
...
The search interval was not consistently applied to "special" searches like
"unread posts" and "view your topics." Now the special searches are always
exempt from the flood interval.
PHPBB3-9662
2010-08-20 14:22:56 -05:00
Andreas Fischer
843d6e53fb
[ticket/9754] Populate S_USER_POSTED variable with correct value in search.php
...
PHPBB3-9754
2010-07-26 23:58:10 +02:00
rxu
d819ee343a
[ticket/9606] Optimize unread search option.
...
Get rid of redundant SQL query in search.php that should increase performance slightly.
PHPBB3-9606
2010-05-17 21:14:02 +08:00
Rob House
e95faaeb68
[ticket/9582] Advanced search cannot be accessed using MSSQL native.
...
PHPBB3-9562
PHPBB3-9582
2010-05-03 19:40:39 +02:00
Ruslan Uzdenov
cb389894e9
Fix bug #51585 - Search loginbox or auth message differs
...
Authorised by: ToonArmy
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10426 89ea8834-ac86-4346-8a33-228a782c2dd0
2010-01-18 15:50:13 +00:00
Ruslan Uzdenov
e94224ecc7
Correctly get unread status information for global announcements in search results.
...
Authorised by: bantu
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10339 89ea8834-ac86-4346-8a33-228a782c2dd0
2009-12-14 17:43:37 +00:00