3a2523e1d2
WIP|FEATURE: First basic implementation of filter
...
* Working version without further architecture.
* Manually tested.
* Still need to move to new architecture and cover with tests.
2017-06-06 12:32:27 +02:00
78c8c66915
Merge pull request #47 from DanielSiepmann/bugfix/initialize-settings
...
BUGFIX: Initialize settings
2017-05-30 11:02:06 +02:00
4588a48928
BUGFIX: Initialize settings
...
* To allow ArrayUtility to work even if no settings were retrieved, e.g.
in tests.
2017-05-30 10:42:35 +02:00
ea1e3640dd
TASK: Fix CGL
2017-05-11 14:36:12 +02:00
687ba8075d
TASK: Migrate RelationResolver to FormEngine
...
* Replace old implementation for TYPO3 6.x with new one for rewritten
form engine in 7.x and up.
2017-05-11 12:39:56 +02:00
350f906016
BUGFIX: Don't index null records
...
* Check null beside false for db result.
2017-05-11 09:16:24 +02:00
8bea39217e
BUGFIX: Don't break if no more records exist
2017-01-26 14:57:23 +01:00
8e062d6e42
BUGFIX: Respect additionalWhereClause and rootline
...
* Use constants instead of setup.
* Grap configuration from path.
* Add where clause.
2017-01-26 14:37:17 +01:00
8448618f60
FIX: Catch deletion of non existing documents
...
* Catch exception raised during deletion of documents that are not
already indexed.
* Log failed deletion tries.
* Add new necessary Exceptions.
2017-01-26 11:01:00 +01:00
d358714d0d
BUGFIX: Handle non available records during indexing
...
* E.g. a hidden record is edited.
2017-01-12 14:26:09 +01:00
1878209b51
BUGFIX: Handle missing configuration in hook
...
* Don't break if no configuration exists, instead improve logging.
2017-01-12 14:21:41 +01:00
24deb93b4f
BUGFIX: Don't break type if settings are not available
...
* E.g. if no TypoScript is included we still should have an array to not
break method calls.
2017-01-12 14:07:23 +01:00
c59ca504ca
Hotfix: Add missing typehint
2017-01-12 13:24:58 +01:00
77555e359f
CLEANUP: Scrutinizer issues
2016-12-20 16:54:46 +01:00
257b23d8e6
Merge pull request #38 from DanielSiepmann/feature/17-resolve-inline-relations
...
FEATURE: Resolve further relations
2016-12-20 12:19:03 +01:00
dc489d6bb8
CLEANUP: Refactor code
2016-12-20 12:10:28 +01:00
9bf2657318
FEATURE: Resolve further relations
...
* Resolve static select items
* Add test for further relation resolvings
Relates: #17
2016-12-20 11:49:02 +01:00
5989b65ae0
FEATURE: Split configuration to support the concepts
...
* Add a further level in configurations to support multiple connections
and indexer.
Relates: #31
2016-12-20 10:04:44 +01:00
03cc77f336
CLEANUP: Fix code style issues
2016-12-15 14:28:10 +01:00
28ef07cbd7
FEATURE: Add new feature to cli
2016-12-15 14:10:04 +01:00
541c6db53a
FEATURE: Allow to configure tables to be processed
...
* Add typoscript option which TYPO3 tables should be processed and which
should not be processed.
* Respect new optiion in hook.
* Also add necessary tests.
* Remove old no longer needed tests for hook.
2016-12-15 14:04:26 +01:00
1486799a02
CLEANUP: Code Style Issues
2016-12-15 11:41:45 +01:00
499b9d0500
FEATURE: Add new configuration to blacklist records by root line
...
* Allow configuration through TypoScript to exclude records for indexing
based on their root line position. Page uids can be configured for
exclusion and all records beneath will be excluded while indexing.
2016-12-15 11:32:41 +01:00
7cabcea0d5
TASK: Explain why this todo is not resolved yet
2016-12-15 09:24:43 +01:00
5ad99ad8f6
Merge remote-tracking branch 'origin/feature/integrate-elasticsearch' into feature/firstReview
2016-12-15 09:21:26 +01:00
98affa8f69
TASK: Resolve first review results
...
* Also remove coverage output on stdout, as it won't help anyone.
2016-12-15 09:17:58 +01:00
Ferdinand Kuhl
1c1295cacb
TASK: Just some very early notes, without claiming of completeness
2016-12-14 19:34:35 +01:00
99fbb28b9d
CLEANUP: Keep line short
2016-12-13 17:19:02 +01:00
0953f4bb1f
FEATURE: Index resolved relations
...
* TCAIndexer is now able to resolve relations of any kind by using TYPO3
Core API.
* Indexed will be a single string or an array, depending of how many
relations were resolved.
* The same value will be indexed as shown by TCA in backend while
editing or displaying.
2016-12-13 16:55:57 +01:00
2ede3ea3a0
BUGFIX: Reorder arguments
...
* As optional arguments should not come before required.
2016-12-13 12:46:03 +01:00
162d383a9d
FEATURE: Allow to configure additional where statement for indexing
...
* Provide TypoScript option to extend where clause to skip further
records, e.g. tt_content by CType.
2016-12-13 12:33:54 +01:00
fef760ee0d
FEATURE: Respect pages information
...
* If content is on a deleted or inactive page, ignore it.
* Also respect disable search setting of page.
2016-12-13 10:52:43 +01:00
1692a02c55
CLENAUP: Remove some scrutinizer ci issues
2016-12-12 18:02:52 +01:00
62ce197406
FEATURE: Added tests for hook and implemented logic ( #8 )
...
* FEATURE: Added tests for hook and implemented logic
* To enable updating search index on modifications through TYPO3 API.
* BUGFIX: Fix path for unit test coverage report
* To fix failing delivery to scrutinizer.
2016-12-12 13:33:07 +01:00
e75f24092e
Feature/improve scrutinizer ( #3 )
...
* TASK: Fix scrutinizer issues
* TASK: Add library dependency
* FIX: Adjust php and TYPO3 requirements
* TASK: Adjust test
2016-12-09 14:07:38 +01:00
b079dd8125
TASK: Migrate existing code ( #2 )
2016-12-09 13:19:35 +01:00
224f945d82
FEATURE: Add first code and tests to integrate travis ci
2016-12-09 11:47:28 +01:00
057c67714f
WIP|FEATURE: Integrate scrutinizer
...
* To allow auto checking of coding guideline
2016-12-09 10:24:49 +01:00