Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions doc/chibi.scrbl
Original file line number Diff line number Diff line change
Expand Up @@ -1657,18 +1657,23 @@ The \scheme{implementations} command tells you which you currently have
installed. The following are currently supported:

\itemlist[
\item{capyscheme - version >= 0.1.0}
\item{chibi - version >= 0.7.3}
\item{chicken - version >= 4.9.0 with the \scheme{r7rs} egg}
\item{cyclone - version >= 0.5.3}
\item{foment - version >= 0.4}
\item{gambit - version >= 4.9.3}
\item{generic; By default libraries are installed into /usr/local/lib/snow or %LOCALAPPDATA%/lib/snow on windows}
\item{gauche - version >= 0.9.4}
\item{guile - version >= 3.0.7}
\item{kawa - version >= 2.0; you need to add the install dir to the search path, e.g. \scheme{-Dkawa.import.path=/usr/local/share/kawa/lib/*.sld}}
\item{loko - version >= 0.12.2}
\item{mit-scheme - version >= 12.1}
\item{larceny - version 0.98; you need to add "lib/Snow" to the paths in startup.sch}
\item{mosh - version >= 0.29-rc1}
\item{racket - version >= 8.16 with the \scheme{r7rs} pkg}
\item{sagittarius - version >= 0.9.13}
\item{stklos - version > 2.10}
\item{tr7 - version > 2.0.12}
\item{ypsilon - version > 2.0.8}
]
25 changes: 12 additions & 13 deletions lib/chibi/snow/fort.scm
Original file line number Diff line number Diff line change
Expand Up @@ -242,19 +242,18 @@
(a (@ (href . "/doc")) "Docs")
(a (@ (href . "/link")) "Resources")
(a (@ (href . "/faq")) "FAQ"))
(div (@ (id . "search"))
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why remove this?

Copy link
Contributor Author

@Retropikzel Retropikzel Jan 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Package search support to replace it is in ashinn/snow-fort#15. But of course if you want both can be there?

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This searches the entire site, notably including the package manuals, so the in-page search isn't a full replacement. Let's keep both for now.

Copy link
Contributor Author

@Retropikzel Retropikzel Jan 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry my bad, I did not think of that. I'll add it back. Just a moment.

(form
(@ (action . "http://www.google.com/search"))
(input (@ (type . "text") (name . "q")))
(input (@ (type . "hidden")
(name . "domains")
(value . "snow-fort.org")))
(input (@ (type . "hidden")
(name . "sitesearch")
(value . "snow-fort.org")))
(input (@ (type . "submit")
(name . "search")
(value . "Search Libraries"))))))
(form
(@ (action . "http://www.google.com/search"))
(input (@ (type . "text") (name . "q")))
(input (@ (type . "hidden")
(name . "domains")
(value . "snow-fort.org")))
(input (@ (type . "hidden")
(name . "sitesearch")
(value . "snow-fort.org")))
(input (@ (type . "submit")
(name . "search")
(value . "Search Libraries")))))
,body)))

(define (dependency-url cfg dep . o)
Expand Down