Exposed a Cache API and moved page caching settings from the config file to the UI.

This commit is contained in:
JT Smith 2003-03-11 06:50:59 +00:00
parent 2b7b9ea4d2
commit c3c06514f3
6 changed files with 218 additions and 12 deletions

View file

@ -26,6 +26,8 @@ Contributing Developers..............Peter Beardsley / Appropriate Solutions
Christophe Marcant
Tavis Parker / ParkerOne Consulting
Daniel Quinlan
Steve Simms
Ben Simpson
Jeff Szpak / Plain Black
Sean Tu / WDI

View file

@ -57,6 +57,9 @@ save you many hours of grief.
* The discussions on USS and Articles have been turned off. They'll
need to be manually turned back on.
* The setting "cachePages" has been removed from the config file. It
has been moved to the content settings page inside the UI.
5.1.0
--------------------------------------------------------------------

View file

@ -3095,6 +3095,14 @@ alter table Article drop column allowDiscussion;
alter table USS drop column allowDiscussion;
delete from settings where name='usernameBinding';
delete from settings where name='addEditStampToPosts';
insert into settings values ("cachePages","60");
insert into settings values ("cachePagesVisitor","600");
delete from international where languageId=1 and namespace='WebGUI' and internationalId=887;
insert into international (internationalId,languageId,namespace,message,lastUpdated) values (887,1,'WebGUI','Midas (Mozilla 1.3+)', 1047342950);
delete from international where languageId=1 and namespace='WebGUI' and internationalId=896;
insert into international (internationalId,languageId,namespace,message,lastUpdated) values (896,1,'WebGUI','Page Cache Timeout (Visitors)', 1047342926);
delete from international where languageId=1 and namespace='WebGUI' and internationalId=895;
insert into international (internationalId,languageId,namespace,message,lastUpdated) values (895,1,'WebGUI','Page Cache Timeout', 1047342910);