@@ -, +, @@ setting - Go to Administration -> System preferences -> Enhanced content. - Enable the OPACAmazonCoverImages preference. - Enter a dummy ID in the AmazonAssocTag preference. - Confirm that you can select "Indian" for the AmazonLocale preference. - Select "Indian" and save. - Open a record in the OPAC and confirm that the cover image links to Amazon.in and includes the ID you entered in AmazonAssocTag. - Do the same with a record in the staff client. --- C4/External/Amazon.pm | 1 + .../data/mysql/atomicupdate/bug_21403-add_indian_amazon_domain.sql | 1 + installer/data/mysql/sysprefs.sql | 2 +- .../prog/en/modules/admin/preferences/enhanced_content.pref | 1 + 4 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 installer/data/mysql/atomicupdate/bug_21403-add_indian_amazon_domain.sql --- a/C4/External/Amazon.pm +++ a/C4/External/Amazon.pm @@ -37,6 +37,7 @@ sub get_amazon_tld { CA => '.ca', DE => '.de', FR => '.fr', + IN => '.in', JP => '.jp', UK => '.co.uk', US => '.com', --- a/installer/data/mysql/atomicupdate/bug_21403-add_indian_amazon_domain.sql +++ a/installer/data/mysql/atomicupdate/bug_21403-add_indian_amazon_domain.sql @@ -0,0 +1, @@ +UPDATE `systempreferences` SET options = 'US|CA|DE|FR|IN|JP|UK' WHERE variable = 'AmazonLocale'; --- a/installer/data/mysql/sysprefs.sql +++ a/installer/data/mysql/sysprefs.sql @@ -43,7 +43,7 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` ('AlternateHoldingsSeparator','',NULL,'The string to use to separate subfields in alternate holdings displays.','free'), ('AmazonAssocTag','','','See: http://aws.amazon.com','free'), ('AmazonCoverImages','0','','Display Cover Images in Staff Client from Amazon Web Services','YesNo'), -('AmazonLocale','US','US|CA|DE|FR|JP|UK','Use to set the Locale of your Amazon.com Web Services','Choice'), +('AmazonLocale','US','US|CA|DE|FR|IN|JP|UK','Use to set the Locale of your Amazon.com Web Services','Choice'), ('AnonSuggestions','0',NULL,'Set to enable Anonymous suggestions to AnonymousPatron borrowernumber','YesNo'), ('AnonymousPatron','0',NULL,'Set the identifier (borrowernumber) of the anonymous patron. Used for Suggestion and reading history privacy',''), ('ArticleRequests', '0', NULL, 'Enables the article request feature', 'YesNo'), --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/enhanced_content.pref +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/enhanced_content.pref @@ -25,6 +25,7 @@ Enhanced Content: CA: Canadian DE: German FR: French + IN: Indian JP: Japanese UK: British - website. --