This page documents the minimum configuration needed for the custom branch of the Sakai site-manage module available here: https://source.sakaiproject.org/svn/msub/unicon.net/wiley/site-manage/trunk
The following is a sample configuration section that can be included in your sakai.properties file:
## Site types.
# These tend to be repeated throughout the configuration file
# so are normalized here.
site.type.instructor.managed = instructor managed
## Site types considered course sites
courseSiteType.count = 1
courseSiteType.1 = instructor managed
## Read/Write Site Titles By Type
titleEditableSiteType.count = 1
titleEditableSiteType.1 = instructor managed
## Roles (should match roles used in course and section templates)
institutional.administrator.role = Institutional Administrator
master.course.lead.instructor.role = Lead Instructor
master.course.content.sharer.role = Content Sharer
class.section.lead.instructor.role = Lead Instructor
class.section.instructor.role = Class-Section Instructor
class.section.student.role = Student
## Resources
content.upload.max=10
checkEvery@org.sakaiproject.tool.api.SessionManager=0
## Extra Env-Specific Config (An opportunity to insert effectively
## free-form environment-specific configuration)
${env.config}
The last line is used to include additional environment-dependent properties such as institution and product information and course template definitions. Here is a pared-down sample of a dev.properties file.
## Extra Env-Specific Config -- In dev we need a few stub ## institutions and products. env.config= ## Stub Institutions\n\ institution.count \= 1\n\ institution.id.1 \= UA\n\ institution.name.1 \= UA\n\ institution.desc.1 \= University of Arizona\n\ institution.descShort.1 \= University of Arizona\n\ institution.logoPath.1 \= /library/image/wiley/inst/ualogo.gif\n\ \n\ ## Stub Products\n\ product.count \= 1\n\ product.id.1 \= 111-1-111-11111-1\n\ product.name.1 \= WileyPLUS for Dummies\n\ product.desc.1 \= WileyPLUS for Dummies: A Reference for the Rest of Us!\n\ product.descShort.1 \= WileyPLUS for Dummies\n\ product.logoPath.1 \= /library/image/wiley/product/wileyplus_for_dummies.jpg\n\ \n\ templateSite.count\=1\n\ templateSite.siteId.1\=master-course-template\n\ templateSite.title.1\=Master Course Template\n\ templateSite.siteType.1\=master-course\n\ templateSite.finalSiteType.1\=instructor managed\n\ templateSite.description.1\=Master Course Template\n\ templateSite.shortDescription.1\=Master Course Template\n\ templateSite.iconUrl.1\=\n\ templateSite.infoUrl.1\=\n\ templateSite.tool.title.override.sakai.siteinfo.1\=Course Admin\n\ templateSite.tools.1\=sakai.announcements,sakai.schedule,sakai.resources,gradebook.tool,e5.learningplan.tool,e5.content.player.tool,sakai.siteinfo\n\ templateSite.homeTools.1\=sakai.iframe.site,sakai.synoptic.announcement,sakai.summary.calendar\n\
Additional properties define templates for different class section types, realms, sample users, and academic sessions. The full sakai.properties and dev.properties files are attached to this page.