about summary refs log tree commit diff
Commit message (Expand)AuthorAgeFilesLines
* Frontend: URL encode and decode the search_queryBaitinq2022-10-303-2/+10
* Frontend: Implement support for searching with /search/* routesBaitinq2022-10-302-6/+37
* Frontend: Update yew to follow masterBaitinq2022-10-304-45/+130
* Frontend: Setup skeleton route supportBaitinq2022-10-304-3/+78
* Frontend: Move app-specific code to app.rsBaitinq2022-10-303-184/+181
* Misc: Remove unneeded dependenciesBaitinq2022-10-306-12/+3
* Misc: Add local lib crate to share common structsBaitinq2022-10-3010-83/+77
* Frontend: Add props to the OSSE ComponentBaitinq2022-10-301-3/+9
* Frontend: Change OSSE component into a struct componentBaitinq2022-10-301-76/+88
* Crawler+Indexer+Frontend: Rename structs to follow logical relationsBaitinq2022-10-293-24/+31
* Frontend: Use ResultComponent to display search resultsBaitinq2022-10-291-3/+14
* Indexer: Implement basic priority calculation of words in a siteBaitinq2022-10-291-7/+6
* Frontend: Show results in reverse order with priorityBaitinq2022-10-281-2/+2
* Frontend: Show result website's title and descriptionBaitinq2022-10-281-2/+4
* Crawler: Only accept HTTP_STATUS_CODE: 200 as success in crawl_url()Baitinq2022-10-281-3/+4
* Indexer: Add website title and description to the CrawledResourceBaitinq2022-10-283-1/+26
* Frontend: Refactor search_word_in_db() to not need explicit lifetimesBaitinq2022-10-281-6/+6
* Frontend: Improve responsive layoutBaitinq2022-10-281-34/+37
* Frontend: Make the results state OptionalBaitinq2022-10-281-15/+27
* Misc: Add TODOsBaitinq2022-10-283-1/+3
* Frontend: Html: Set footer at the bottom of the pageBaitinq2022-10-281-36/+38
* Frontend: Logically structure htmlBaitinq2022-10-281-35/+39
* Frontend: Add local bootstrap filesBaitinq2022-10-283-5/+18
* Fronted: Order search results by priorityBaitinq2022-10-273-2/+20
* Frontend: Use display_results() function for rendering CrawledResourcesBaitinq2022-10-271-5/+14
* Frontend: Fetch results from indexerBaitinq2022-10-273-33/+53
* Crawler: Abstract database word fetching with search_word_in_db()Baitinq2022-10-271-2/+10
* Indexer: Add /search with no query endpointBaitinq2022-10-271-0/+6
* Crawler: Replace String::from with .to_string()Baitinq2022-10-271-3/+6
* Indexer: Setup permissive CORSBaitinq2022-10-273-1/+21
* Indexer: Return json from the /search endpointBaitinq2022-10-273-7/+6
* Frontend: Add results field to the state and set dummy resultsBaitinq2022-10-261-2/+46
* Frontend: Add basic search_query stateBaitinq2022-10-263-8/+158
* Frontend: Add basic layoutBaitinq2022-10-262-1/+43
* Frontend: Update index.html to include boostrapBaitinq2022-10-251-3/+16
* Crawler: Fix bad error handling with match handlingBaitinq2022-10-251-6/+9
* Crawler: Use async ClientBaitinq2022-10-254-48/+152
* Indexer: Use CrawledResource structure as values in the reverse index dbBaitinq2022-10-253-11/+45
* Indexer: Add "correct" error handlingBaitinq2022-10-251-7/+7
* Crawler: Shuffle crawled urlsBaitinq2022-10-253-4/+5
* Crawler: Add "correct" error handlingBaitinq2022-10-251-21/+23
* Crawler: Parse urls with the "url" crateBaitinq2022-10-253-25/+26
* Crawler: Add crawled url filterBaitinq2022-10-241-1/+8
* Flake: Add rust-analyzer packageBaitinq2022-10-241-0/+1
* Crawler: Set queue size to 2222Baitinq2022-10-241-1/+1
* Misc: Update build/run instructionsBaitinq2022-10-241-2/+4
* Client->Frontend: Create yew frontend skeletonBaitinq2022-10-248-14/+238
* Crawler+Indexer: Rust cleanupBaitinq2022-10-232-14/+6
* Crawler: Replace println! with dbg!Baitinq2022-10-231-7/+7
* Crawler: Remove prepending of https:// to each urlBaitinq2022-10-232-1006/+1006