2020-09-19

How to find these PHP files and how to access the data already crawled by Yioop in PHP ???.

Hello Mr. Chris.
I hope you are well. In the latest version of YIOOP, we do not find each other too much and we want you to help us identify the PHP Files of certain features of YIOOP.
1 - What is the path of:
- File which contains the HTML form in which we enter the keywords in the Search Engine ???
- PHP file that DISTINCTLY processes the display of search results for each category "Web, Image, Video, News, etc ... " in the Search Engine ???
- PHP file processes Spell Checker in Yioop ???
- PHP or Jquery (JavaScript) file which processes keyword suggestions below HTML Fields during a search ???
- PHP file which processes Trends in Yioop ???
- PHP file that processes Wikipedia's Knowledge Graph ???

2 - How to retrieve or access via a piece of PHP Code all the "TRENDS" data crawled by Yioop on our PHP Server ??? In other words, where are the Trends stored in Yioop and how to access them via PHP ???
3 - How to retrieve or access via a piece of PHP Code all the data only WIKIPEDIA crawled by Yioop on our PHP Server ???
4 - How to access via a piece of PHP code to the data set crawled by Yioop ???
Thank you very much for enlightening us please.
(Edited: 2020-09-29)
Hello Mr. Chris. ---- I hope you are well. In the latest version of YIOOP, we do not find each other too much and we want you to help us identify the PHP Files of certain features of YIOOP. ---- '''1 - '''What is the path of: ---- '''- '''File which contains the HTML form in which we enter the keywords in the Search Engine ??? ---- '''- '''PHP file that DISTINCTLY processes the display of search results for each category "'''''Web, Image, Video, News, etc ...'''''" in the Search Engine ??? ---- '''- '''PHP file processes Spell Checker in Yioop ??? ---- '''- '''PHP or Jquery (JavaScript) file which processes keyword suggestions below HTML Fields during a search ??? ---- '''- '''PHP file which processes Trends in Yioop ??? ---- '''- '''PHP file that processes Wikipedia's Knowledge Graph ??? ---- ---- '''2 - '''How to retrieve or access via a piece of PHP Code all the "TRENDS" data crawled by Yioop on our PHP Server ??? In other words, where are the Trends stored in Yioop and how to access them via PHP ??? ---- '''3 - '''How to retrieve or access via a piece of PHP Code all the data only WIKIPEDIA crawled by Yioop on our PHP Server ??? ---- '''4 - '''How to access via a piece of PHP code to the data set crawled by Yioop ??? ---- Thank you very much for enlightening us please.
2020-09-26

-- How to find these PHP files and how to access the data already crawled by Yioop in PHP ???
The code to draw search results still is:
 src/views/SearchView.php
Notice now though this is a ComponentView with component elements to draw different things that might appear in search results. For example, the hamburger menu and the bar at the top of the page are drawn by
 src/views/elements/SearchbarElement.php, the knowledge wiki callouts if they exist are drawn by 
 src/views/elements/SearchcalloutElement.php, etc.
The actual processing of search queries is still done by
 src/controllers/SearchController.php 
which makes use of several models, the main one being
 src/models/PhraseModel.php
Knowledge Wiki items are stored using the usual wiki mechanism for Yioop using the search wiki group. In the database, this group and its pages are stored in the GROUP_PAGE table. This is accessed by other components in Yioop via
 src/models/SearchverticalsModel.php
src/models/TrendingModel.php is used to access trending info.
The two MediaUpdater jobs
 src/library/media_jobs/FeedUpdateJob.php 
and
 src/library/media_jobs/TrendingHighlightsJob.php
are responsible for keeping the trending terms up-to-date.
Keyword suggestions are controlled by
 src/scripts/suggest.js
Generally, if you want to see short example code for controlling different items above a good place to start would be to look at programs whose names end with Tool.php in src/configs and src/executables. For example, TokenTool.php, ArcTool.php, and QueryTool.php
Best,
Chris
(Edited: 2020-09-26)
The code to draw search results still is: src/views/SearchView.php Notice now though this is a ComponentView with component elements to draw different things that might appear in search results. For example, the hamburger menu and the bar at the top of the page are drawn by src/views/elements/SearchbarElement.php, the knowledge wiki callouts if they exist are drawn by src/views/elements/SearchcalloutElement.php, etc. The actual processing of search queries is still done by src/controllers/SearchController.php which makes use of several models, the main one being src/models/PhraseModel.php Knowledge Wiki items are stored using the usual wiki mechanism for Yioop using the search wiki group. In the database, this group and its pages are stored in the GROUP_PAGE table. This is accessed by other components in Yioop via src/models/SearchverticalsModel.php src/models/TrendingModel.php is used to access trending info. The two MediaUpdater jobs src/library/media_jobs/FeedUpdateJob.php and src/library/media_jobs/TrendingHighlightsJob.php are responsible for keeping the trending terms up-to-date. Keyword suggestions are controlled by src/scripts/suggest.js Generally, if you want to see short example code for controlling different items above a good place to start would be to look at programs whose names end with Tool.php in src/configs and src/executables. For example, TokenTool.php, ArcTool.php, and QueryTool.php Best, Chris
2020-09-27

-- How to find these PHP files and how to access the data already crawled by Yioop in PHP ???
Hello Mr. Chris.
Thank you for your answer. But there are three very important points to which you did not answer.
There are:
1 - PHP file processes Spell Checker in Yioop ???
2 - How to retrieve or access via a piece of PHP Code all the data only WIKIPEDIA URL crawled by Yioop on our PHP Server ???
3 - How to access via a piece of PHP code All the data already crawled by Yioop ???
Thank you very much for enlightening us please.
(Edited: 2020-10-12)
Hello Mr. Chris. ---- Thank you for your answer. But there are three very important points to which you did not answer. ---- There are: ---- '''1 -''' PHP file processes '''Spell Checker''' in Yioop ??? ---- '''2 -''' How to retrieve or access via a piece of PHP Code '''all the data only WIKIPEDIA URL crawled''' by Yioop on our PHP Server ??? ---- 3 - How to access via a piece of PHP code '''All the data already crawled''' by Yioop ??? ---- Thank you very much for enlightening us please.
2020-10-12

-- How to find these PHP files and how to access the data already crawled by Yioop in PHP ???
Hello Mr. Chris.
There are three very important points to which you did not answer.
There are:
1 - PHP file processes Spell Checker in Yioop ???
2 - How to retrieve or access via a piece of PHP Code all the data only WIKIPEDIA URL crawled by Yioop on our PHP Server ???
3 - How to access via a piece of PHP code All the data already crawled by Yioop ???
Thank you very much for enlightening us please.
Hello Mr. Chris. ---- '''There are three very important points to which you did not answer.''' ---- There are: ---- '''1 -''' PHP file processes '''Spell Checker''' in Yioop ??? ---- '''2 -''' How to retrieve or access via a piece of PHP Code '''all the data only WIKIPEDIA URL crawled''' by Yioop on our PHP Server ??? ---- 3 - How to access via a piece of PHP code '''All the data already crawled''' by Yioop ??? ---- Thank you very much for enlightening us please.
X