View | Details | Raw Unified | Return to bug 14994
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/bug_14994-proxy.sql (+1 lines)
Line 0 Link Here
1
INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES ('RequestProxyEnabled','0',NULL,'Enables or disables the web request proxy in Koha','YesNo'), ('RequestProxyURL', '', NULL, 'External URL(s) for proxy requests.', 'Free');
(-)a/installer/data/mysql/sysprefs.sql (+2 lines)
Lines 365-370 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
365
('RentalsInNoissuesCharge','1',NULL,'Rental charges block checkouts (added to noissuescharge).','YesNo'),
365
('RentalsInNoissuesCharge','1',NULL,'Rental charges block checkouts (added to noissuescharge).','YesNo'),
366
('ReportsLog','0',NULL,'If ON, log information about reports.','YesNo'),
366
('ReportsLog','0',NULL,'If ON, log information about reports.','YesNo'),
367
('RequestOnOpac','1',NULL,'If ON, globally enables patron holds on OPAC','YesNo'),
367
('RequestOnOpac','1',NULL,'If ON, globally enables patron holds on OPAC','YesNo'),
368
('RequestProxyEnabled','0',NULL,'Enables or disables the web request proxy in Koha','YesNo'),
369
('RequestProxyURL', '', NULL, 'External URL(s) for proxy requests.', 'Free'),
368
('ReservesControlBranch','PatronLibrary','ItemHomeLibrary|PatronLibrary','Branch checked for members reservations rights','Choice'),
370
('ReservesControlBranch','PatronLibrary','ItemHomeLibrary|PatronLibrary','Branch checked for members reservations rights','Choice'),
369
('ReservesMaxPickUpDelay','7','','Define the Maximum delay to pick up an item on hold','Integer'),
371
('ReservesMaxPickUpDelay','7','','Define the Maximum delay to pick up an item on hold','Integer'),
370
('ReservesNeedReturns','1','','If ON, a hold placed on an item available in this library must be checked-in, otherwise, a hold on a specific item, that is in the library & available is considered available','YesNo'),
372
('ReservesNeedReturns','1','','If ON, a hold placed on an item available in this library must be checked-in, otherwise, a hold on a specific item, that is in the library & available is considered available','YesNo'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/web_services.pref (-1 / +14 lines)
Lines 53-58 Web services: Link Here
53
            - pref: SvcMaxReportRows
53
            - pref: SvcMaxReportRows
54
              class: integer
54
              class: integer
55
            - rows of a report requested via the reports web service.
55
            - rows of a report requested via the reports web service.
56
    Request proxy:
57
        -
58
            - pref: RequestProxyEnabled
59
              choices:
60
                yes: Enable
61
                no: Disable
62
              default: 0
63
            - the internal HTTP request proxy in Koha. Used to pull data from external sources from browser.
64
        -
65
            - pref: RequestProxyURL
66
              type: textarea
67
              class: code
68
            - This is a list of URLs for the request proxy, one on each line.
69
            - The first URL will have id 1, the next 2 and so on.
56
    IdRef:
70
    IdRef:
57
        -
71
        -
58
            - pref: IdRef
72
            - pref: IdRef
59
- 

Return to bug 14994