{"id":13792049,"url":"https://github.com/spdegabrielle/clash","last_synced_at":"2026-02-18T13:02:20.101Z","repository":{"id":69261304,"uuid":"163449055","full_name":"spdegabrielle/clash","owner":"spdegabrielle","description":"a quick racket wiki","archived":false,"fork":false,"pushed_at":"2020-08-22T01:05:04.000Z","size":30,"stargazers_count":9,"open_issues_count":8,"forks_count":1,"subscribers_count":4,"default_branch":"master","last_synced_at":"2026-02-10T19:19:29.142Z","etag":null,"topics":["racket","wiki"],"latest_commit_sha":null,"homepage":null,"language":"Racket","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/spdegabrielle.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2018-12-28T20:59:45.000Z","updated_at":"2023-08-05T17:47:00.000Z","dependencies_parsed_at":null,"dependency_job_id":"797bde86-bb54-43c2-8e2c-dd07fcba5e81","html_url":"https://github.com/spdegabrielle/clash","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/spdegabrielle/clash","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spdegabrielle%2Fclash","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spdegabrielle%2Fclash/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spdegabrielle%2Fclash/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spdegabrielle%2Fclash/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/spdegabrielle","download_url":"https://codeload.github.com/spdegabrielle/clash/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spdegabrielle%2Fclash/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29580640,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T08:38:15.585Z","status":"ssl_error","status_checked_at":"2026-02-18T08:38:14.917Z","response_time":162,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["racket","wiki"],"created_at":"2024-08-03T22:01:07.499Z","updated_at":"2026-02-18T13:02:20.083Z","avatar_url":"https://github.com/spdegabrielle.png","language":"Racket","funding_links":[],"categories":["Racket"],"sub_categories":["Networks/web"],"readme":"Clash - a wiki in racket using scribble.\n=====\n\n\u003e _We plan to replace this wiki (eventually) with a wiki written in Racket, to which we will migrate the existing content._\n\n(footer of the racket wiki on GitHub at \u003chttps://github.com/racket/racket/wiki\u003e) \n\n## Goal \nA wiki using scribble as the wiki text! \n\n## Purpose \nTo replace \u003chttps://github.com/racket/racket/wiki\u003e.\n\n\n### Design\n\nDRAFT - subject to change\n\nGET http(s)://server/filename.html    \n - file exist -\u003e serve static file at specified path \n - file missing -\u003e Redirect if applicable, otherwise start Edit flow\n\nEdit flow\n edit form to create new page  \nGET http(s)://server/filename.html?action=edit  \n  -\u003e serve edit page servlet that retrieves scribble source and puts it in a form\nGET http(s)://server/filename \u003cfilename not found in #:server-root-path\u003e  \n  -\u003e serve edit page adding parameters ?action=edit or maybe new   \nPOST form to http(s)://server/filename.html  \n  -\u003e update scribble source file \u0026 generate target html file in #:server-root-path and redirect to target html file at http(s)://server/filename.html  \n\nthe Scribble source and the generated html are in separate folders, \n\n````\n;; folder to store html static files\n(define page-root (build-path (current-directory) \"html\"))\n;; folder to store scribble source (or other source format)\n(define scribble-root (build-path (current-directory) \"scribble\"))\n````\n\n* filename.html is in  `#:extra-files-paths` aka `page-root`\n* I'm trying to make it with plain old \u003cform\u003es hence the use of POST (or can I use PUT or invent a verb in modern browsers?)  \n\n### ToDO  \n- [X] convert scribble to html\n- [ ] users/authentication (openID?)\n- [ ] git for versions (of the scribble files)\n- [ ] history, scribble-diff, rollback\n- [ ] An editor(in RacketScript), to provide a better UX than a form textbox \n- [ ] editing from DrRacket\n- [ ] pollen instead of scribble (pollen allows undefined identifiers - which scribble doesn't - which would be useful in creating new pages in a wiki-like fashion) pollen blog: \u003chttps://github.com/otherjoel/thenotepad\u003e may be relevant\n- [ ] support redirects\n- [ ] what else?\n\n### resources\n\n* http://docs.racket-lang.org/continue/index.html\n* https://serverracket.com/\n* https://github.com/mbutterick/pollen/blob/master/pollen/private/project-server.rkt\n* http://matt.might.net/articles/low-level-web-in-racket/\n  * https://github.com/mattmight/uiki\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspdegabrielle%2Fclash","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspdegabrielle%2Fclash","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspdegabrielle%2Fclash/lists"}