πŸ“š Node [[search]] exact match
Nodes contain individual contributions whose filenames match your search. x
πŸ““ search.md by @flancian οΈπŸ”— ✍️

Search

  • An [[action]].
  • See [[do]].
⸎ (text) last updated 2021-05-09 18:49:09+02:00
πŸ““ 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-05-21 23:50:36+02:00
πŸ““ 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-05-21 23:50:36+02:00
πŸ““ content/search.md by @wilde-at-heart
⸎ (text) last updated 2022-06-16 05:40:08+02:00
πŸ““ search.md by @agora@botsin.space
  • [[chrisaldrich@mastodon.social]] https://mastodon.social/@chrisaldrich/109371886364479744
  • [[smallcircles@social.coop]] https://social.coop/@smallcircles/109495064506533137
  • [[tanepiper@tane.codes]] https://tane.codes/@tanepiper/109711416132010995
⸎ (text) last updated 2023-01-18 18:36:09+01:00
πŸ““ assets/img/search.png by @bmann

⸎ (image) last updated 2021-03-28 22:31:12+02:00

Loading pushes...

Rendering context...

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