url_verify perm/org setting seed data
authorBill Erickson <berick@esilibrary.com>
Thu, 9 Aug 2012 13:27:00 +0000 (09:27 -0400)
committerBill Erickson <berick@esilibrary.com>
Thu, 9 Aug 2012 13:27:00 +0000 (09:27 -0400)
Signed-off-by: Bill Erickson <berick@esilibrary.com>
Open-ILS/src/sql/Pg/950.data.seed-values.sql
Open-ILS/src/sql/Pg/upgrade/ZZZZ.data.url_verify.sql

index eaad319..d79012a 100644 (file)
@@ -11907,3 +11907,23 @@ INSERT into config.org_unit_setting_type
         'integer'
     );
 
+INSERT into config.org_unit_setting_type
+    (name, grp, label, description, datatype)
+    VALUES (
+        'url_verify.verification_batch_size',
+        'url_verify',
+        oils_i18n_gettext(
+            'url_verify.verification_batch_size',
+            'Number of URLs to test in parallel',
+            'coust',
+            'label'
+        ),
+        oils_i18n_gettext(
+            'url_verify.verification_batch_size',
+            'URLs are tested in batches.  This number defines the size of each batch and it directly relates to the number of back-end processes performing URL verification.',
+            'coust',
+            'description'
+        ),
+        'integer'
+    );
+
index 8254d71..84b1340 100644 (file)
@@ -85,5 +85,27 @@ INSERT into config.org_unit_setting_type
     );
 
 
+INSERT into config.org_unit_setting_type
+    (name, grp, label, description, datatype)
+    VALUES (
+        'url_verify.verification_batch_size',
+        'url_verify',
+        oils_i18n_gettext(
+            'url_verify.verification_batch_size',
+            'Number of URLs to test in parallel',
+            'coust',
+            'label'
+        ),
+        oils_i18n_gettext(
+            'url_verify.verification_batch_size',
+            'URLs are tested in batches.  This number defines the size of each batch and it directly relates to the number of back-end processes performing URL verification.',
+            'coust',
+            'description'
+        ),
+        'integer'
+    );
+
+
+
 COMMIT;