From: <var...@us...> - 2021-08-10 09:33:37
|
Revision: 10474 http://sourceforge.net/p/phpwiki/code/10474 Author: vargenau Date: 2021-08-10 09:33:35 +0000 (Tue, 10 Aug 2021) Log Message: ----------- config/config-dist.ini: remove MAX_KEEP, MIN_AGE, MIN_KEEP, KEEP, MAX_AGE Modified Paths: -------------- trunk/config/config-dist.ini Modified: trunk/config/config-dist.ini =================================================================== --- trunk/config/config-dist.ini 2021-08-10 08:51:45 UTC (rev 10473) +++ trunk/config/config-dist.ini 2021-08-10 09:33:35 UTC (rev 10474) @@ -489,61 +489,6 @@ ;USECACHE = false ;======================================================================== -; Section 3a: Page revisions -; -; The next section controls how many old revisions of each page are -; kept in the database. -;======================================================================== - -; There are two basic classes of revisions: major and minor. Which -; class a revision belongs in is determined by whether the author -; checked the "this is a minor revision" checkbox when they saved the -; page. -; -; There is, additionally, a third class of revisions: author -; revisions. The most recent non-mergable revision from each distinct -; author is an author revision. -; -; The expiry parameters for each of those three classes of revisions -; can be adjusted separately. For each class there are five -; parameters (usually, only two or three of the five are actually -; set) which control how long those revisions are kept in the -; database. -; -; MAX_KEEP: If set, this specifies an absolute maximum for the -; number of archived revisions of that class. This is -; meant to be used as a safety cap when a non-zero -; min_age is specified. It should be set relatively high, -; and its purpose is to prevent malicious or accidental -; database overflow due to someone causing an -; unreasonable number of edits in a short period of time. -; -; MIN_AGE: Revisions younger than this (based upon the supplanted -; date) will be kept unless max_keep is exceeded. The age -; should be specified in days. It should be a -; non-negative, real number, -; -; MIN_KEEP: At least this many revisions will be kept. -; -; KEEP: No more than this many revisions will be kept. -; -; MAX_AGE: No revision older than this age will be kept. -; -; Definitions of terms used above: -; -; Supplanted date: Revisions are timestamped at the instant that they -; cease being the current revision. Revision age is computed using -; this timestamp, not the edit time of the page. -; -; Merging: When a minor revision is deleted, if the preceding -; revision is by the same author, the minor revision is merged with -; the preceding revision before it is deleted. Essentially: this -; replaces the content (and supplanted timestamp) of the previous -; revision with the content after the merged minor edit, the rest of -; the page metadata for the preceding version (summary, mtime, ...) -; is not changed. - -;======================================================================== ; Part Three: User Authentication ;======================================================================== ; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |