antville/code/Site/type.properties

92 lines
2.1 KiB
Properties
Raw Normal View History

_db = antville
_table = AV_SITE
_id = SITE_ID
_parent = root
2001-06-18 08:57:33 +00:00
##
## primitive properties
##
title = SITE_TITLE
alias = SITE_ALIAS
email = SITE_EMAIL
online = SITE_ISONLINE
lastupdate = SITE_LASTUPDATE
lastoffline = SITE_LASTOFFLINE
lastblockwarn = SITE_LASTBLOCKWARN
lastdelwarn = SITE_LASTDELWARN
lastping = SITE_LASTPING
enableping = SITE_ENABLEPING
blocked = SITE_ISBLOCKED
trusted = SITE_ISTRUSTED
createtime = SITE_CREATETIME
modifytime = SITE_MODIFYTIME
2001-06-18 08:57:33 +00:00
##
## xml encoded properties
##
preferences = mountpoint (propertymgr)
preferences_xml = SITE_PREFERENCES
##
## object references
##
creator = object (user)
creator.local = SITE_F_USER_CREATOR
creator.foreign = USER_ID
2003-12-08 22:51:52 +00:00
modifier = object (user)
modifier.local = SITE_F_USER_MODIFIER
modifier.foreign = USER_ID
2001-06-18 08:57:33 +00:00
2003-12-08 22:51:52 +00:00
layout = object (layout)
layout.local = SITE_F_LAYOUT
layout.foreign = LAYOUT_ID
##
## mountpoints
##
topics = mountpoint (topicmgr)
members = mountpoint (membermgr)
images = mountpoint (imagemgr)
layouts = mountpoint (layoutmgr)
files = mountpoint (filemgr)
stories = mountpoint (storymgr)
polls = mountpoint (pollmgr)
2001-06-18 08:57:33 +00:00
##
## collections
##
_children = collection (story)
_children.local = SITE_ID
_children.foreign = TEXT_F_SITE
_children.filter = TEXT_PROTOTYPE = 'story' and TEXT_ISONLINE = 2
_children.order = TEXT_CREATETIME desc
_children.group = TEXT_DAY
_children.group.prototype = day
_children.group.order = TEXT_DAY desc
allstories = collection (story)
allstories.local = SITE_ID
allstories.foreign = TEXT_F_SITE
allstories.filter = TEXT_PROTOTYPE = 'story' AND TEXT_ISONLINE > 0
allstories.order = TEXT_MODIFYTIME DESC
2001-06-18 08:57:33 +00:00
allcontent = collection (story)
allcontent.local = SITE_ID
allcontent.foreign = TEXT_F_SITE
allcontent.filter = TEXT_ISONLINE > 0
allcontent.order = TEXT_MODIFYTIME DESC
lastmod = collection (story)
lastmod.local = SITE_ID
lastmod.foreign = TEXT_F_SITE
lastmod.filter = TEXT_ISONLINE > 0
lastmod.order = TEXT_MODIFYTIME DESC
lastmod.maxsize = 100
mostread = collection (story)
mostread.local = SITE_ID
mostread.foreign = TEXT_F_SITE
mostread.filter = TEXT_PROTOTYPE = 'story' AND TEXT_ISONLINE > 0
mostread.order = TEXT_READS desc
2002-12-01 19:26:40 +00:00
mostread.maxSize = 25