Author Topic: A little help please.  (Read 4423 times)

wazz999

  • Newbie
  • *
  • Posts: 1
    • View Profile
A little help please.
« on: January 01, 2009, 10:32:28 am »
Ive just found out about open goo.  Fantastic software. Its basically what I was looking for, for my website. Ive had it running for a few days now. However...
This seems quite counter productive, but there are features that I don't need in the application as a whole - IE: notes, calendar, tasks and web links.  I need a "dumbed" down version, basically.

Are there any people out there who know how to move/remove those functions.
Also I would like to remove the tags box and modify the front page so that the calendar isn't there.  All I really need is the documents editing part of the software.
Then user registration as an automatic feature - eg: login/register.

I would greatly appreciate any help that can be offered.

ignacio

  • Hero Member
  • *****
  • Posts: 1703
    • View Profile
Re: A little help please.
« Reply #1 on: January 04, 2009, 03:29:25 pm »
You can remove the panels you don't need in 'public/assets/javascript/og/layout.js'.

Tabs are defined from line 31 to 137 in this format (in this case the messages panel):
Code: [Select]
new og.ContentPanel({
title: lang('messages'),
id: 'messages-panel',
iconCls: 'ico-messages',
refreshOnWorkspaceChange: true,
defaultContent: {
type: "panel",
data: "messages"
}
}),

To remove the panels you don't want you can just delete them or comment them by surrounding the code betwee a /* and a */ like this:
Code: [Select]
/*new og.ContentPanel({
title: lang('messages'),
id: 'messages-panel',
iconCls: 'ico-messages',
refreshOnWorkspaceChange: true,
defaultContent: {
type: "panel",
data: "messages"
}
}),*/

Make sure that the last panel doesn't end with a comma.

We will add configuration options to hide panels on a future version.

To remove the tags panel delete or comment lines 215 to 225.