Remove extraneous release notes documents
authorJason Stephenson <jason@sigio.com>
Fri, 29 Oct 2021 13:09:47 +0000 (09:09 -0400)
committerJason Stephenson <jason@sigio.com>
Fri, 29 Oct 2021 13:09:47 +0000 (09:09 -0400)
Signed-off-by: Jason Stephenson <jason@sigio.com>
docs/RELEASE_NOTES_NEXT/Cataloging/authority-full-rec-value-index.adoc [deleted file]
docs/RELEASE_NOTES_NEXT/Cataloging/bre_negative_one.adoc [deleted file]
docs/RELEASE_NOTES_NEXT/Client/splash_search_fix.adoc [deleted file]

diff --git a/docs/RELEASE_NOTES_NEXT/Cataloging/authority-full-rec-value-index.adoc b/docs/RELEASE_NOTES_NEXT/Cataloging/authority-full-rec-value-index.adoc
deleted file mode 100644 (file)
index 861f8bd..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-Fix for Authority Records with Long Subfields
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-Importing or updating authority records with long subfields, i.e. in
-the vicinity of 5,000 characters or more in length, can cause database
-errors that will prevent the update or import from happening.  The
-error occurs because non-full text indexes in PostgreSQL have a
-limited length, and long fields sometimes lead to index entries that
-exceed this maximum value.
-
-In order to rectify this issue, two database indexes on the
-`authority.full_rec` table's `value` column have been redefined to
-match their counterparts in the `metabib.real_full_rec` table.  After
-this update, only the first 1024 characters of an authority field or
-subfield will be considered by these indexes.
-
-NOTE: These indexes are not used for authority record search, though
-they are used for sorting and paging.
diff --git a/docs/RELEASE_NOTES_NEXT/Cataloging/bre_negative_one.adoc b/docs/RELEASE_NOTES_NEXT/Cataloging/bre_negative_one.adoc
deleted file mode 100644 (file)
index d84ec3f..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-Bib Record -1 Can No Longer Be Edited
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-Now when retrieving the bibliographic record with the id of -1 the delete button will be missing and save button is disabled.
-
-
diff --git a/docs/RELEASE_NOTES_NEXT/Client/splash_search_fix.adoc b/docs/RELEASE_NOTES_NEXT/Client/splash_search_fix.adoc
deleted file mode 100644 (file)
index c12294b..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-Fix for Staff Splash Page Multi-Word Search
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-The addition of the Angular Staff Catalog surfaced a double-encoding issue
-with redirects in certain Apache versions. This caused searches for multiple
-words to have %20 in place of spaces, almost certainly resulting in 0 results.
-
-In order to apply this fix, change the Angular redirects in eg_vhost.conf from
-
- RewriteRule ^/eg2/(.*) https://%{HTTP_HOST}/eg2/en-US/$1 [R=307,L]
-
-to
-
- RewriteRule ^/eg2/(.*) https://%{HTTP_HOST}/eg2/en-US/$1 [NE,R=307,L]
-