[add] rename to AnthoLume
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-11-04 19:40:32 -04:00
parent bc3e9cbaf0
commit a8bcd0f588
20 changed files with 121 additions and 116 deletions

View File

@@ -91,7 +91,7 @@ func (api *API) opdsDocuments(c *gin.Context) {
// TODO
// Links: []opds.Link{
// {
// Title: "Search Book Manager",
// Title: "Search AnthoLume",
// Rel: "search",
// TypeLink: "application/opensearchdescription+xml",
// Href: "search.xml",
@@ -105,8 +105,8 @@ func (api *API) opdsDocuments(c *gin.Context) {
func (api *API) opdsSearchDescription(c *gin.Context) {
rawXML := `<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
<ShortName>Search Book Manager</ShortName>
<Description>Search Book Manager</Description>
<ShortName>Search AnthoLume</ShortName>
<Description>Search AnthoLume</Description>
<Url type="application/atom+xml;profile=opds-catalog;kind=acquisition" template="./search?query={searchTerms}"/>
</OpenSearchDescription>`
c.Data(http.StatusOK, "application/xml", []byte(rawXML))