From: <gem...@li...> - 2011-09-21 07:31:07
|
Revision: 57 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=57&view=rev Author: mennodekker Date: 2011-09-21 07:31:01 +0000 (Wed, 21 Sep 2011) Log Message: ----------- Don't want to screw up the logs, so removed some actions (create, edit, delete) Modified Paths: -------------- trunk/library/classes/Gems/Menu/MenuAbstract.php Modified: trunk/library/classes/Gems/Menu/MenuAbstract.php =================================================================== --- trunk/library/classes/Gems/Menu/MenuAbstract.php 2011-09-21 07:23:20 UTC (rev 56) +++ trunk/library/classes/Gems/Menu/MenuAbstract.php 2011-09-21 07:31:01 UTC (rev 57) @@ -203,7 +203,11 @@ $setup = $this->addContainer($label); // MAIL ACTIVITY CONTROLLER - $setup->addBrowsePage($this->_('Activity'), 'pr.mail.log', 'mail-log'); + //$setup->addBrowsePage(); + $page = $this->addPage($this->_('Activity'), 'pr.mail.log', 'mail-log'); + $page->addAutofilterAction(); + $page->addExcelAction(); + $page->addShowAction(); // MAIL Server CONTROLLER $page = $setup->addBrowsePage($this->_('Servers'), 'pr.mail.server', 'mail-server'); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <gem...@li...> - 2011-09-21 10:11:23
|
Revision: 58 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=58&view=rev Author: mennodekker Date: 2011-09-21 10:11:17 +0000 (Wed, 21 Sep 2011) Log Message: ----------- Fixed mail activity log accidentally moved to top level Modified Paths: -------------- trunk/library/classes/Gems/Menu/MenuAbstract.php Modified: trunk/library/classes/Gems/Menu/MenuAbstract.php =================================================================== --- trunk/library/classes/Gems/Menu/MenuAbstract.php 2011-09-21 07:31:01 UTC (rev 57) +++ trunk/library/classes/Gems/Menu/MenuAbstract.php 2011-09-21 10:11:17 UTC (rev 58) @@ -204,7 +204,7 @@ // MAIL ACTIVITY CONTROLLER //$setup->addBrowsePage(); - $page = $this->addPage($this->_('Activity'), 'pr.mail.log', 'mail-log'); + $page = $setup->addPage($this->_('Activity'), 'pr.mail.log', 'mail-log'); $page->addAutofilterAction(); $page->addExcelAction(); $page->addShowAction(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <gem...@li...> - 2012-02-29 09:56:50
|
Revision: 517 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=517&view=rev Author: mennodekker Date: 2012-02-29 09:56:41 +0000 (Wed, 29 Feb 2012) Log Message: ----------- Removed duplicate 'remove' option for sources Modified Paths: -------------- trunk/library/classes/Gems/Menu/MenuAbstract.php Modified: trunk/library/classes/Gems/Menu/MenuAbstract.php =================================================================== --- trunk/library/classes/Gems/Menu/MenuAbstract.php 2012-02-28 16:36:56 UTC (rev 516) +++ trunk/library/classes/Gems/Menu/MenuAbstract.php 2012-02-29 09:56:41 UTC (rev 517) @@ -412,7 +412,6 @@ // SURVEY SOURCES CONTROLLER $page = $setup->addBrowsePage($this->_('Survey Sources'), 'pr.source', 'source'); - $page->addDeleteAction(); $page->addAction($this->_('Check status'), null, 'ping')->addParameters(MUtil_Model::REQUEST_ID); $page->addAction($this->_('Synchronize surveys'), 'pr.source.synchronize', 'synchronize')->addParameters(MUtil_Model::REQUEST_ID); $page->addAction($this->_('Check answers'), 'pr.source.check-answers', 'check')->addParameters(MUtil_Model::REQUEST_ID); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <gem...@li...> - 2012-05-30 14:02:22
|
Revision: 705 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=705&view=rev Author: mennodekker Date: 2012-05-30 14:02:15 +0000 (Wed, 30 May 2012) Log Message: ----------- Removed autofilter empty lines from Roles -> Edit Modified Paths: -------------- trunk/library/classes/Gems/Menu/MenuAbstract.php Modified: trunk/library/classes/Gems/Menu/MenuAbstract.php =================================================================== --- trunk/library/classes/Gems/Menu/MenuAbstract.php 2012-05-29 15:19:37 UTC (rev 704) +++ trunk/library/classes/Gems/Menu/MenuAbstract.php 2012-05-30 14:02:15 UTC (rev 705) @@ -75,16 +75,19 @@ { if ($this->_subItems) { foreach ($this->_subItems as $item) { - $_itemlabel = $label . ($item->get('label') ?: $item->get('privilege')); - if ($_privilege = $item->get('privilege')) { + // Skip autofilter action, but include all others + if ($item->get('action') !== 'autofilter') { + $_itemlabel = $label. ($item->get('label') ?: $item->get('privilege')); + if ($_privilege = $item->get('privilege')) { - if (isset($privileges[$_privilege])) { - $privileges[$_privilege] .= "<br/> + " . $_itemlabel; - } else { - $privileges[$_privilege] = $_itemlabel; + if (isset($privileges[$_privilege])) { + $privileges[$_privilege] .= "<br/> + " . $_itemlabel; + } else { + $privileges[$_privilege] = $_itemlabel; + } } + $item->_addUsedPrivileges($privileges, $_itemlabel . '->'); } - $item->_addUsedPrivileges($privileges, $_itemlabel . '->'); } } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |