[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
14082024
/
Data
/
htdocs
/
htdocs
/
ojs
/
248
/
dbscripts
/
xml
/
upgrade
/
[
Home
]
File: 2.1.1_update.xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE data SYSTEM "../../../lib/pkp/dtd/xmlData.dtd"> <!-- * 2.1.1_update.xml * * Copyright (c) 2013-2019 Simon Fraser University * Copyright (c) 2003-2019 John Willinsky * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. * * 2.1.1 database updates XML file. * --> <data> <!-- Bug #1739: Automated open access notification emails and subscription expiry emails. --> <table name="email_templates_default"> <row> <field name="email_key">OPEN_ACCESS_NOTIFY</field> <field name="can_edit">1</field> <field name="can_disable">0</field> <field name="to_role_id">1048576<!-- Reader --></field> </row> <row> <field name="email_key">SUBSCRIPTION_BEFORE_EXPIRY</field> <field name="can_edit">1</field> <field name="can_disable">0</field> <field name="to_role_id">1048576<!-- Reader --></field> </row> <row> <field name="email_key">SUBSCRIPTION_AFTER_EXPIRY</field> <field name="can_edit">1</field> <field name="can_disable">0</field> <field name="to_role_id">1048576<!-- Reader --></field> </row> <row> <field name="email_key">SUBSCRIPTION_AFTER_EXPIRY_LAST</field> <field name="can_edit">1</field> <field name="can_disable">0</field> <field name="to_role_id">1048576<!-- Reader --></field> </row> </table> <table name="email_templates_default_data"> <field_default name="locale">en_US</field_default> <row> <field name="email_key">OPEN_ACCESS_NOTIFY</field> <field name="subject">Issue Now Open Access</field> <field name="body">Readers: {$journalName} has just made available in an open access format the following issue. We invite you to review the Table of Contents here and then visit our web site ({$journalUrl}) to review articles and items of interest. Thanks for the continuing interest in our work, {$editorialContactSignature}</field> <field name="description">This email is sent to registered readers who have requested to receive a notification email when an issue becomes open access.</field> </row> <row> <field name="email_key">SUBSCRIPTION_BEFORE_EXPIRY</field> <field name="subject">Notice of Subscription Expiry</field> <field name="body">{$subscriberName}: Your {$journalName} subscription is about to expire. {$subscriptionType} Expiry date: {$expiryDate} To ensure the continuity of your access to this journal, please go to the journal website and renew your subscription. You are able to log in to the system with your username, "{$username}". If you have any questions, please feel free to contact me. {$subscriptionContactSignature}</field> <field name="description">This email notifies a subscriber that their subscription will soon expire. It provides the journal's URL along with instructions for access.</field> </row> <row> <field name="email_key">SUBSCRIPTION_AFTER_EXPIRY</field> <field name="subject">Subscription Expired</field> <field name="body">{$subscriberName}: Your {$journalName} subscription has expired. {$subscriptionType} Expiry date: {$expiryDate} To renew your subscription, please go to the journal website. You are able to log in to the system with your username, "{$username}". If you have any questions, please feel free to contact me. {$subscriptionContactSignature}</field> <field name="description">This email notifies a subscriber that their subscription has expired. It provides the journal's URL along with instructions for access.</field> </row> <row> <field name="email_key">SUBSCRIPTION_AFTER_EXPIRY_LAST</field> <field name="subject">Subscription Expired - Final Reminder</field> <field name="body">{$subscriberName}: Your {$journalName} subscription has expired. Please note that this is the final reminder that will be emailed to you. {$subscriptionType} Expiry date: {$expiryDate} To renew your subscription, please go to the journal website. You are able to log in to the system with your username, "{$username}". If you have any questions, please feel free to contact me. {$subscriptionContactSignature}</field> <field name="description">This email notifies a subscriber that their subscription has expired. It provides the journal's URL along with instructions for access.</field> </row> </table> <!-- Bug #2182: Review acceptance acknowledgement / review encouragement email. --> <table name="email_templates_default"> <row> <field name="email_key">REVIEW_CONFIRM_ACK</field> <field name="can_edit">1</field> <field name="can_disable">1</field> <field name="to_role_id">4096<!-- Reviewer --></field> <field name="from_role_id">512<!-- Section Editor --></field> </row> </table> <table name="email_templates_default_data"> <field_default name="locale">en_US</field_default> <row> <field name="email_key">REVIEW_CONFIRM_ACK</field> <field name="subject">Review Underway Acknowledgement</field> <field name="body">{$reviewerName}: Thank you for agreeing to review the manuscript "{$articleTitle}" for {$journalName} by {$reviewDueDate}. {$editorialContactSignature}</field> <field name="description">This email is sent from the Section Editor to the Reviewer to acknowledge their acceptance of a review or encourage them to complete the review.</field> </row> </table> <!-- Bug #2187: Removal of the scheduling queue. NOTE: This obsoletes the fix for #2114 that was previously included in this file. --> <sql> <query> UPDATE articles SET status = 1 WHERE status = 2 </query> </sql> <!-- Bug #2197: Add a distinction between print and online ISSNs. The existing ISSN is assumed to be online. --> <sql> <query> UPDATE journal_settings SET setting_name = 'onlineIssn' WHERE setting_name = 'issn' </query> </sql> <!-- Bug #1739: Add support for additional reminders --> <table name="scheduled_tasks"> <row> <field name="class_name">tasks.SubscriptionExpiryReminder</field> </row> <row> <field name="class_name">tasks.OpenAccessNotification</field> </row> </table> <!-- - Bug #2213: Invert public flag on subscription types. Note that this was previously - the "pub" column but it has been renamed earlier in the upgrade process. --> <sql> <query> UPDATE subscription_types SET disable_public_display = ~ disable_public_display </query> </sql> </data>