πŸ“š Node [[search]]
↳ πŸ““ Resource [[@communecter/search]]
πŸ““ garden/communecter/04 - Documentation technique/process/search.md by @communecter

Search inside CO

http://dev.cte3.communecter.org/co2/search/globalautocomplete runs through de co2 module > search controller > GlobalAutoCompleteAction action

  • $res = SearchNew::globalAutoComplete($searchP);
    • $results = self::querySearchAll($post, $fields); all query params are put together inside $searchParams
searchTypeOrga 
searchType 
options
ranges
startDateUTC
onlyCount
countType
indexMin
indexStep
initType
countResult
searchType
searchTypeOrga
fields
sortBy

self::getQueries builds the query, adds up all requested parameters needed for the search self::getResults applies the search queries and finds the data possible to convert the Results for a given context $results = Costum::sameFunction($convertMethodName, $results); ex : convertDataForProposals

filters.js

ex : home search page territoire http://127.0.0.1/costum/co/index/slug/ctenat#territoires ladd ajax http://127.0.0.1/co2/app/search/page/territoires view /co2/views/app/search.php #search-content

ex : filter ou app territoire

name    "reunion"
locality    ""
searchType[]    "cities"
searchBy    "ALL"
indexMin    "0"
indexMax    "30"
costumSlug  "ctenat"

ex : filter by domaine d’action http://dev.cte3.communecter.org/co2/search/globalautocomplete

searchType[]    "projects"
indexMin    "0"
initType    ""
count   "true"
countType[] "projects"
indexStep   "30"
filters[category]   "cteR"
costumSlug  "ctenat"

ex : cte admin search http://dev.cte3.communecter.org/co2/search/globalautocompleteadmin

name    "tco"
searchType[]    "projects"
indexMin    "0"
initType    ""
count   "true"
countType[] "projects"
indexStep   "30"
filters[category]   "cteR"
private "true"
costumSlug  "ctenat"

Admin Searching

sur une page ou une view comme http://127.0.0.1/costum/co/index/slug/ctenat#admin.view.territory charge http://127.0.0.1/costum/default/adminpage/ #content-view-admin construit dynamiquement la view : /custom/default/newgroupAdmin qui lance

filterAdmin = searchObj.init(paramsFilter);
filterAdmin.search.init(filterAdmin);

/var/www/dev/modules/co2/views/admin/index.php qui charge /js/default/admin.js

var adminPanel = {

qui peut etre complΓ©tΓ© ou surchargΓ© pour les costum $adminConstruct=$this->appConfig["adminPanel"]; adminPanel.init()

var adminDirectory = {

L’admin est faite de tableau de recherche drivΓ© par des configurations title : titre de la page types : la ou les collection Γ  chercher table : les champs Γ  dessiner paramsFilter : les filtres disponible sur le tableaux

adminPanel.views

lists all possible views that can be opened in the navigation

adminDirectory.values

are functions to get the value of any field in the e (current document data map) json map

adminDirectory.actions

used in the actions dropdown

adminDirectory.events

are real posted requests send by potential actions

adminPanel.views.territory = function(){
    var data={
        title : "Gestion des Territoires",
        types : [ "projects" ],
        table : {
           ...
        },
        paramsFilter : {
            container : "#filterContainer",
            defaults : {
                ...
            },
            filters : {
                ...
            }
        }
    };
⸎ (text) last updated 2023-08-06 16:34:04+00:00
πŸ““ garden/communecter/en/04 - Documentation technique/process/search.md by @communecter

Search inside CO

http://dev.cte3.communecter.org/co2/search/globalautocomplete runs through de co2 module > search controller > GlobalAutoCompleteAction action

  • $res = SearchNew::globalAutoComplete($searchP);
    • $results = self::querySearchAll($post, $fields); all query params are put together inside $searchParams
searchTypeOrga 
searchType 
options
ranges
startDateUTC
onlyCount
countType
indexMin
indexStep
initType
countResult
searchType
searchTypeOrga
fields
sortBy

self::getQueries builds the query, adds up all requested parameters needed for the search self::getResults applies the search queries and finds the data possible to convert the Results for a given context $results = Costum::sameFunction($convertMethodName, $results); ex : convertDataForProposals

filters.js

ex : home search page territoire http://127.0.0.1/costum/co/index/slug/ctenat#territoires ladd ajax http://127.0.0.1/co2/app/search/page/territoires view /co2/views/app/search.php #search-content

ex : filter ou app territoire

name    "reunion"
locality    ""
searchType[]    "cities"
searchBy    "ALL"
indexMin    "0"
indexMax    "30"
costumSlug  "ctenat"

ex : filter by domaine d’action http://dev.cte3.communecter.org/co2/search/globalautocomplete

searchType[]    "projects"
indexMin    "0"
initType    ""
count   "true"
countType[] "projects"
indexStep   "30"
filters[category]   "cteR"
costumSlug  "ctenat"

ex : cte admin search http://dev.cte3.communecter.org/co2/search/globalautocompleteadmin

name    "tco"
searchType[]    "projects"
indexMin    "0"
initType    ""
count   "true"
countType[] "projects"
indexStep   "30"
filters[category]   "cteR"
private "true"
costumSlug  "ctenat"

Admin Searching

sur une page ou une view comme http://127.0.0.1/costum/co/index/slug/ctenat#admin.view.territory charge http://127.0.0.1/costum/default/adminpage/ #content-view-admin construit dynamiquement la view : /custom/default/newgroupAdmin qui lance

filterAdmin = searchObj.init(paramsFilter);
filterAdmin.search.init(filterAdmin);

/var/www/dev/modules/co2/views/admin/index.php qui charge /js/default/admin.js

var adminPanel = {

qui peut etre complΓ©tΓ© ou surchargΓ© pour les costum $adminConstruct=$this->appConfig["adminPanel"]; adminPanel.init()

var adminDirectory = {

L’admin est faite de tableau de recherche drivΓ© par des configurations title : titre de la page types : la ou les collection Γ  chercher table : les champs Γ  dessiner paramsFilter : les filtres disponible sur le tableaux

adminPanel.views

lists all possible views that can be opened in the navigation

adminDirectory.values

are functions to get the value of any field in the e (current document data map) json map

adminDirectory.actions

used in the actions dropdown

adminDirectory.events

are real posted requests send by potential actions

adminPanel.views.territory = function(){
    var data={
        title : "Gestion des Territoires",
        types : [ "projects" ],
        table : {
           ...
        },
        paramsFilter : {
            container : "#filterContainer",
            defaults : {
                ...
            },
            filters : {
                ...
            }
        }
    };
⸎ (text) last updated 2023-08-06 16:34:05+00:00

Loading pushes...

Rendering context...

πŸ“š Node [[2004 02 18 yahoo new search engine does rss]] maybe related
πŸ“š Node [[2004 03 29 microsoft now does search]] maybe related
πŸ“š Node [[2004 04 30 deep enterprise search]] maybe related
πŸ“š Node [[2004 05 18 search changes how business works]] maybe related
πŸ“š Node [[2004 06 14 the big secret of search optimisation]] maybe related
πŸ“š Node [[2004 09 06 john batelle searchblogs new look ad update]] maybe related
πŸ“š Node [[2004 09 14 amazons search engine web app heres a9 again]] maybe related
πŸ“š Node [[2004 11 12 msn now does search thinks google is a good result]] maybe related
πŸ“š Node [[2004 11 15 the deep web only courtesy of search portal x]] maybe related
πŸ“š Node [[2005 09 14 google blogsearch launches]] maybe related
πŸ“š Node [[2005 10 21 jabber and the search for the best php cms that uses postgresql]] maybe related
πŸ“š Node [[2006 05 19 never miss google blog search]] maybe related
πŸ“š Node [[2006 07 23 googles challenge searching the live web]] maybe related
πŸ“š Node [[2006 11 30 yahoo canada panama search preview at opus hotel]] maybe related
πŸ“š Node [[20200705171017 how_to_take_smart_notes_roam_research_video]] maybe related
πŸ“š Node [[[tz] antarctic research base vostok local time]] maybe related
πŸ“š Node [[agora search]] maybe related
πŸ“š Node [[altsearch]] maybe related
πŸ“š Node [[async search]] maybe related
πŸ“š Node [[athens research]] maybe related
πŸ“š Node [[atomic search]] maybe related
πŸ“š Node [[betula_federated_search]] maybe related
πŸ“š Node [[c highlighted and lowlighted search results map to how well results map to intentions]] maybe related
πŸ“š Node [[c search terms express intentions]] maybe related
πŸ“š Node [[c search terms should have smart defaults so people don t have to always use semantic self expression]] maybe related
πŸ“š Node [[c there is a wealth of creative exhaust generated by researchers that is going to waste]] maybe related
πŸ“š Node [[critical search]] maybe related
πŸ“š Node [[crowdsourced search]] maybe related
πŸ“š Node [[european research group]] maybe related
πŸ“š Node [[how bad are search results? let s compare google bing marginalia kagi mwmbl and chatgpt]] maybe related
πŸ“š Node [[how to take smart notes roam research video]] maybe related
πŸ“š Node [[i populate the related items section through a search term]] maybe related
πŸ“š Node [[i search as a primitive]] maybe related
πŸ“š Node [[i search terms as the basis for conditional formatting]] maybe related
πŸ“š Node [[i search terms as the basis for user defined notifications]] maybe related
πŸ“š Node [[i search terms as the basis for user defined subscriptions]] maybe related
πŸ“š Node [[i searchable blobs as unnamed groups enable unnamed formalization]] maybe related
πŸ“š Node [[interactive intent modeling search circle]] maybe related
πŸ“š Node [[ipfs search]] maybe related
πŸ“š Node [[jeremy lent wisdom traditions science the search for meaning]] maybe related
πŸ“š Node [[meilisearch]] maybe related
πŸ“š Node [[most of the innovation on which silicon valley depends comes from government funded research]] maybe related
πŸ“š Node [[my orgzly searches]] maybe related
πŸ“š Node [[neverending search]] maybe related
πŸ“š Node [[open search]] maybe related
πŸ“š Node [[operational research]] maybe related
πŸ“š Node [[org auto repeat maybe invalid search bound wrong side of point]] maybe related
πŸ“š Node [[ourresearch]] maybe related
πŸ“š Node [[r generating research questions through problematization]] maybe related
πŸ“š Node [[r interactive intent modeling for exploratory search]] maybe related
πŸ“š Node [[r scholars before researchers]] maybe related
πŸ“š Node [[r scholonto an ontology based digital library server for research documents and discourse]] maybe related
πŸ“š Node [[recent research in computer vision]] maybe related
πŸ“š Node [[research]] maybe related
πŸ“š Node [[research grant application]] maybe related
πŸ“š Node [[researching social annotation in education]] maybe related
πŸ“š Node [[roam research]] maybe related
πŸ“š Node [[search and annotation are complementary]] maybe related
πŸ“š Node [[search and seizure]] maybe related
πŸ“š Node [[search behavior]] maybe related
πŸ“š Node [[search engine]] maybe related
πŸ“š Node [[search engines]] maybe related
πŸ“š Node [[search on mastodon]] maybe related
πŸ“š Node [[search or create]] maybe related
πŸ“š Node [[searching]] maybe related
πŸ“š Node [[searchobj]] maybe related
πŸ“š Node [[searchscene]] maybe related
πŸ“š Node [[the craft of research]] maybe related
πŸ“š Node [[transition research network]] maybe related
πŸ“š Node [[transition research network pattern language]] maybe related
πŸ“š Node [[triangulation in qualitative research]] maybe related
πŸ“š Node [[turning on case insensitive search in org roam]] maybe related
πŸ“š Node [[unicode search]] maybe related
πŸ“š Node [[user research]] maybe related
πŸ“š Node [[you and your research]] maybe related