History: SNiPTT
Source of version: 6
- ยซ
- ยป
Copy to clipboard
__SNiPTT__ stands for Social Networking in Pretty Tiki Trackers. This profile is intended to help with building a Social Networking website based mainly on the powerful Tiki Trackers feature. !Global Preferences {CODE(caption=>YAML)} preferences: # alphabetically sorted allowRegister: y # Allow users to create new accounts feature_mytiki: y feature_userPreferences: y feature_wiki: y rememberme: enabled style: strasa.css userTracker: y validateUsers: n # This is slowing us down as we build the profile {CODE} This profile applies two trackers. !User Profile Tracker {CODE(caption=>YAML,wrap=>1)} preferences: feature_trackers: y objects: - type: tracker ref: user_profile_tracker data: name: User Profile description: Additional information about users default_status: open allow: [creator_modification, one_user_item] #one_user_item is just a guess, no idea if it is supported already hide_list_empty_fields: y show: [creation_date, modification_date, list_modification_date ] sort_default_field: $user_name sort_default_order: asc - type: tracker_field ref: user_name data: name: User Login Name tracker: $user_profile_tracker type: user flags: [searchable, public, link, list, mandatory] options: 1 order: 10 - type: tracker_field ref: real_name data: name: Real Name tracker: $user_profile_tracker type: preference flags: [searchable, public, list] options: realName order: 20 {CODE} !User Posts Tracker {CODE(caption=>YAML,wrap=>1)} preferences: feature_trackers: y objects: - type: tracker ref: user_posts_tracker data: name: User Posts description: User posts for "micro-blogging" purposes default_status: open allow: [comments, creator_modification, one_user_item] #one_user_item is just a guess, no idea if it is supported already hide_list_empty_fields: y show: [creation_date, modification_date, list_modification_date ] sort_default_field: $user_name sort_default_order: asc - type: tracker_field ref: user_name data: name: User Login Name tracker: $user_posts_tracker type: user flags: [searchable, public, link, list, mandatory] options: 1 order: 10 - type: tracker_field ref: user_post_body data: name: Post Body tracker: $user_posts_tracker type: textarea flags: [searchable, public, mandatory] options: 1,80,4,1024,1024 order: 20 {CODE}