From 41d187c96454ef856cfdea22f62ec058926141e2 Mon Sep 17 00:00:00 2001 From: Roni bhakta Date: Mon, 25 Nov 2024 21:46:55 +0530 Subject: [PATCH 1/3] fixed the overlapping issue --- static/css/components/read-panel.less | 1 + 1 file changed, 1 insertion(+) diff --git a/static/css/components/read-panel.less b/static/css/components/read-panel.less index cc00ef07da2..bb035f9ae1d 100644 --- a/static/css/components/read-panel.less +++ b/static/css/components/read-panel.less @@ -71,6 +71,7 @@ .waitinglist-message { margin: 0 0 10px; font-size: 12px; + text-wrap: auto; } .cta-section { font-size: .78em; From e608dbbd6bc1a3dd79f0014db63881fb8f0e916c Mon Sep 17 00:00:00 2001 From: Roni bhakta Date: Thu, 28 Nov 2024 07:01:10 +0530 Subject: [PATCH 2/3] Support for ? --- conf/solr/conf/managed-schema.xml | 76 ++++++++++++++++--------------- conf/solr/conf/wordtypes.txt | 4 +- 2 files changed, 43 insertions(+), 37 deletions(-) diff --git a/conf/solr/conf/managed-schema.xml b/conf/solr/conf/managed-schema.xml index a1c0b23daac..ade7faa77bb 100644 --- a/conf/solr/conf/managed-schema.xml +++ b/conf/solr/conf/managed-schema.xml @@ -578,42 +578,46 @@ cases will work, for example query "wi fi" will match document "WiFi" or "wi-fi". --> - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/conf/solr/conf/wordtypes.txt b/conf/solr/conf/wordtypes.txt index 9949618a747..db48048cbe2 100644 --- a/conf/solr/conf/wordtypes.txt +++ b/conf/solr/conf/wordtypes.txt @@ -20,4 +20,6 @@ # "copyright" symbol (©), see https://github.com/internetarchive/openlibrary/issues/7555 \u00A9 => ALPHANUM # number sign (#), only as alphabetic for case like 'C#' -\u0023 => ALPHA \ No newline at end of file +\u0023 => ALPHA +# question mark (?), treat as delimiter +\u003F => ALPHANUM \ No newline at end of file From 6b8b35a2f87e0001a95781d8919fcd73c5f37358 Mon Sep 17 00:00:00 2001 From: Roni bhakta <77425964+ronibhakta1@users.noreply.github.com> Date: Thu, 28 Nov 2024 07:17:27 +0530 Subject: [PATCH 3/3] Update read-panel.less --- static/css/components/read-panel.less | 1 - 1 file changed, 1 deletion(-) diff --git a/static/css/components/read-panel.less b/static/css/components/read-panel.less index bb035f9ae1d..cc00ef07da2 100644 --- a/static/css/components/read-panel.less +++ b/static/css/components/read-panel.less @@ -71,7 +71,6 @@ .waitinglist-message { margin: 0 0 10px; font-size: 12px; - text-wrap: auto; } .cta-section { font-size: .78em;