You are not logged in Log in Join
You are here: Home » Members » morphex » ZopeGUMWikiWeb » SharedFolders » wikipage_view

Log in
Name

Password

 
 
FrontPage »

SharedFolders

Is there a way to have shared Calendars or ToDo Lists with ZopeGUM?

Yes, there is.  Just set up a shared CalendarFolder instance, and
add a link (or button) somewhere so they can access it.

You could for example add an entry in the workspace.py file, in the function
get_workspace_actions that looks something like this:

	def get_workspace_actions(self):
		"""Returns a list of workspace action jumps."""

		# [...]

		global_calendar_one = self.get_global_calendar_one()

		if global_calendar_one:

			actions.append(
				{
				'action':global_calendar_one.absolute_url(),
				'title':'Calendar for all'
				}
			)

I'm looking into splitting ZopeGUM into separate packages, but it's a bit
of a maintenance hassle at this point, as some things are still changed.

	There may be an additional product somewhere down the road that
	will let us setup certain settings for some users.