Subversion Repositories DevTools

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1405 dpurdie 1
<%
2
' ------------------------------------------------------------------------------------------------
3
'
4
' THE PURPOSE OF THIS FILE IS TO OVERRIDE THE SETTINGS IN THE MAIN FILE --> WIKI.ASP
5
'
6
' This file becomes the effective settings in a particular website.   I separated these
7
' settings to avoid re-entering the values everytime there is an update in wiki.asp
8
'
9
' That means, if there is a new Wiki.asp,  your settings will be preserved by this file.
10
'
11
' ------------------------------------------------------------------------------------------------
12
 
13
gMdbExtension      = ".mdb"
14
gBlackListedIpsRE  =  "^89\.149\.195.*"
15
gDisableSave       =  false                           ' Set to true if you have to fully disable save.
16
gRemoveHtml        =  false                           ' Set to true if  HTML input in wiki will be enabled.
17
gLoginFlag         =  "log"                           ' The default enable login flag ( must be overriden by config.asp).
18
gHideWikiSource    =  false                           ' Allow viewing of unformatted wiki text when loggin in.
4044 dpurdie 19
gHideWikiFooter    =  true                            ' Show or Hide the whole wiki footer
1405 dpurdie 20
gHideLogin         =  false                           ' Enable/Disable double-click or Edit. This can be overriden by &log
21
gHideLastEditor    =  false                           ' Show/Hide in  the footer the info about last edit
22
gHttpDomain        = "auto"                           ' URL for RSS links to work. default is AUTO Override in config.asp . Set to "" to remove rss footer links
2365 dpurdie 23
gDefaultIcon       = "gear"                           ' This default. Maybe overridden if your site has icon.gif, icon.jpg or xxxx.gif and if FSO is working.
24
gDefaultHomePage   = "ReleaseNotes"                   ' modify your start page here. this may be overridden by .ini file. The .ini file is same dir as mdb file
1405 dpurdie 25
gDataSourceDir     = "db"                             ' MSAccess folder. this is normally `db`
26
gDocRootDir        = ""                               ' physical absolute path of root (e.g. c:/dc2/mysite.com)  make it blank if `gDataSourceDir` is relative to wiki.asp
4044 dpurdie 27
gSearchLabel       = "Look&nbsp;for:"                 ' Text to show on top search box
1405 dpurdie 28
gRssStyle          = "<?xml-stylesheet type=""text/xsl"" href=""rss.xsl"" ?>"   'This is to make RSS xml readable File rss.xsl should exist
29
gBlackListedIps    = ""
30
'gWikiBodyPrefix    = "|!{bigger}DOUBLE-CLICK page or Click Edit below.{/bigger}"
31
gFooterHtml        = "</body></html><div id='ads'><XML><noscript><div><span><iframe><style>"  'This hides footer ads for this site.
4044 dpurdie 32
gDevNotePrefix     = "RM"                             ' Dev Note Prefix
5357 dpurdie 33
gFavIcon           = "../icons/" & gDevNotePrefix & Application("FavIconSuffix") & ".png"
1405 dpurdie 34
 
35
gLoginFlag   =  "edit"
36
gHideLogin   =  true
37
%>
38