forked from codeberg/usemod.usemod
Compare commits
35 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
25aa740c2a | ||
|
|
14c06ba45d | ||
|
|
f008b5c0fd | ||
|
|
ba421c2d6a | ||
|
|
291d474327 | ||
|
|
4a7553ced4 | ||
|
|
acf20ddadd | ||
|
|
21ebc21f8e | ||
|
|
1d521cdc40 | ||
|
|
2ad2e04c33 | ||
|
|
380be5160c | ||
|
|
ee1e6b9b65 | ||
|
|
b1a6c615cf | ||
|
|
182fbdd079 | ||
|
|
d00245b234 | ||
|
|
ba3686996f | ||
|
|
eda0a5ee5a | ||
|
|
026a769e0a | ||
|
|
070ff2c704 | ||
|
|
8e3f7824eb | ||
|
|
d71a118d19 | ||
|
|
f14d05103c | ||
|
|
3aa96dd404 | ||
|
|
44e500ae44 | ||
|
|
70488b0c98 | ||
|
|
2950d9a81c | ||
|
|
de4e395c6c | ||
|
|
2883da1bf9 | ||
|
|
c99cad8cc9 | ||
|
|
08687dd8d8 | ||
|
|
418b667f28 | ||
|
|
f94bebe31e | ||
|
|
3a46d68d6f | ||
|
|
f6c8f13015 | ||
|
|
2214a8175a |
17
Changelog
17
Changelog
@@ -1,4 +1,21 @@
|
||||
|
||||
Changes for bugfix release 1.2.1 (December 01, 2017):
|
||||
* closing div for class wikibody was missing at some places, added
|
||||
* put <hr> class wikilinerc inside of div for class wikirc
|
||||
* fix EditHash
|
||||
* RSS: fall back to LogoUrl for RssLogoUrl
|
||||
* cleanup generated HTML code on history page
|
||||
|
||||
Changes for release 1.2.0 (November 05, 2017):
|
||||
* switch DTD to HTML 4.0.1 Transitional
|
||||
* cleanup generated HTML code
|
||||
* added CSS class wikibody to include all except wikiheader and wikifooter
|
||||
suggested by UngarPeter
|
||||
* fixed bug CallingKeepFileName
|
||||
with suggestion from JuanMtnezPineda
|
||||
* show IP address instead of faked DNS entry on RecentChanges
|
||||
* add EditHash
|
||||
|
||||
Changes for release 1.1.0 (October 31, 2017):
|
||||
* enable warnings (perl -w)
|
||||
* fix warnings
|
||||
|
||||
11
config
11
config
@@ -1,5 +1,5 @@
|
||||
# == Configuration =====================================================
|
||||
# Original version from UseModWiki 1.1.0
|
||||
# Original version from UseModWiki 1.2.1
|
||||
|
||||
$CookieName = "Wiki"; # Name for this wiki (for multi-wiki sites)
|
||||
$SiteName = "Wiki"; # Name of site (used for titles)
|
||||
@@ -11,7 +11,7 @@ $ScriptTZ = ""; # Local time zone ("" means do not print)
|
||||
$RcDefault = 30; # Default number of RecentChanges days
|
||||
@RcDays = qw(1 3 7 30 90); # Days for links on RecentChanges
|
||||
$KeepDays = 14; # Days to keep old revisions
|
||||
$SiteBase = ""; # Full URL for <BASE> header
|
||||
$SiteBase = ""; # Full URL for <base> header
|
||||
$FullUrl = ""; # Set if the auto-detected URL is wrong
|
||||
$RedirType = 1; # 1 = CGI.pm, 2 = script, 3 = no redirect
|
||||
$AdminPass = ""; # Set to non-blank to enable password(s)
|
||||
@@ -38,17 +38,19 @@ $DiffColor2 = '#cfffcf'; # Background color of new/added text
|
||||
$FavIcon = ''; # URL of bookmark/favorites icon, or ''
|
||||
$RssDays = 7; # Default number of days in RSS feed
|
||||
$UserHeader = ''; # Optional HTML header additional content
|
||||
$UserBody = ''; # Optional <BODY> tag additional content
|
||||
$UserBody = ''; # Optional <body> tag additional content
|
||||
$StartUID = 1001; # Starting number for user IDs
|
||||
$UploadDir = ''; # Full path (like /foo/www/uploads) for files
|
||||
$UploadUrl = ''; # Full URL (like http://foo.com/uploads)
|
||||
@ImageSites = qw(); # Url prefixes of good image sites: ()=all
|
||||
$Salt = 'pepper'; # Salt for generating an EditHash,
|
||||
# please choose something other here!
|
||||
|
||||
# Major options:
|
||||
$UseSubpage = 1; # 1 = use subpages, 0 = do not use subpages
|
||||
$UseCache = 0; # 1 = cache HTML pages, 0 = generate every page
|
||||
$EditAllowed = 1; # 1 = editing allowed, 0 = read-only
|
||||
$RawHtml = 0; # 1 = allow <HTML> tag, 0 = no raw HTML in pages
|
||||
$RawHtml = 0; # 1 = allow <html> tag, 0 = no raw HTML in pages
|
||||
$HtmlTags = 0; # 1 = "unsafe" HTML tags, 0 = only minimal tags
|
||||
$UseDiff = 1; # 1 = use diff features, 0 = do not use diff
|
||||
$FreeLinks = 1; # 1 = use [[word]] links, 0 = LinkPattern only
|
||||
@@ -63,6 +65,7 @@ $ReplaceFile = 'ReplaceFile'; # 0 = disable, 'PageName' = indicator tag
|
||||
$TableSyntax = 1; # 1 = wiki syntax tables, 0 = no table syntax
|
||||
$NewFS = 0; # 1 = new multibyte $FS, 0 = old $FS
|
||||
$UseUpload = 0; # 1 = allow uploads, 0 = no uploads
|
||||
$UseEditHash = 0; # 1 = use EditHash, 0 = no EditHash
|
||||
|
||||
# Minor options:
|
||||
$LogoLeft = 0; # 1 = logo on left, 0 = logo on right
|
||||
|
||||
Reference in New Issue
Block a user