MidCOM svn: r17808 - trunk/midcom/org.openpsa.contacts
flack
midcom-commits at lists.midgard-project.org
Tue Sep 30 15:33:05 CEST 2008
Author: flack
Date: Tue Sep 30 15:33:05 2008
New Revision: 17808
URL: http://trac.midgard-project.org/software/changeset/17808
Log:
formatting fixes
Modified:
trunk/midcom/org.openpsa.contacts/viewer.php
Modified: trunk/midcom/org.openpsa.contacts/viewer.php
==============================================================================
--- trunk/midcom/org.openpsa.contacts/viewer.php (original)
+++ trunk/midcom/org.openpsa.contacts/viewer.php Tue Sep 30 15:33:05 2008
@@ -63,28 +63,28 @@
{
// Match /duplicates/person
$this->_request_switch[] = array
- (
+ (
'handler' => array('org_openpsa_contacts_handler_duplicates_person', 'sidebyside'),
'fixed_args' => array('duplicates', 'person'),
);
// Match /buddylist/
$this->_request_switch[] = array
- (
+ (
'handler' => array('org_openpsa_contacts_handler_buddy_list', 'list'),
'fixed_args' => 'buddylist',
);
// Match /buddylist/xml
$this->_request_switch['buddylist_xml'] = array
- (
+ (
'handler' => array('org_openpsa_contacts_handler_buddy_list', 'list'),
'fixed_args' => array('buddylist', 'xml'),
);
// Match /buddylist/add/<person guid>
$this->_request_switch[] = array
- (
+ (
'handler' => array('org_openpsa_contacts_handler_buddy_list', 'add'),
'fixed_args' => array('buddylist', 'add'),
'variable_args' => 1,
@@ -92,7 +92,7 @@
// Match /buddylist/remove/<person guid>
$this->_request_switch[] = array
- (
+ (
'handler' => array('org_openpsa_contacts_handler_buddy_list', 'remove'),
'fixed_args' => array('buddylist', 'remove'),
'variable_args' => 1,
@@ -100,47 +100,47 @@
// Match /search/<type>
$this->_request_switch[] = array
- (
+ (
'handler' => array('org_openpsa_contacts_handler_search', 'search_type'),
'fixed_args' => 'search',
'variable_args' => 1,
);
// Match /search/
$this->_request_switch[] = array
- (
+ (
'handler' => array('org_openpsa_contacts_handler_search', 'search'),
'fixed_args' => 'search',
);
// Match /group/new/<GUID>
$this->_request_switch[] = array
- (
+ (
'handler' => array('org_openpsa_contacts_handler_group', 'new'),
'fixed_args' => array('group','new'),
'variable_args' => 1,
);
// Match /group/<GUID>/<action>
$this->_request_switch[] = array
- (
+ (
'handler' => array('org_openpsa_contacts_handler_group', 'action'),
'fixed_args' => 'group',
'variable_args' => 2,
);
// Match /group/new
$this->_request_switch[] = array
- (
+ (
'handler' => array('org_openpsa_contacts_handler_group', 'new'),
'fixed_args' => array('group', 'new'),
);
// Match /group/<GUID>
$this->_request_switch[] = array
- (
+ (
'handler' => array('org_openpsa_contacts_handler_group', 'view'),
'fixed_args' => 'group',
'variable_args' => 1,
);
// Match /person/new/GroupGUID
$this->_request_switch[] = array
- (
+ (
'handler' => array('org_openpsa_contacts_handler_person', 'person_new'),
'fixed_args' => array('person', 'new'),
'variable_args' => 1,
@@ -148,7 +148,7 @@
// Match /person/new
$this->_request_switch[] = array
- (
+ (
'handler' => array('org_openpsa_contacts_handler_person', 'person_new'),
'fixed_args' => array('person','new'),
);
@@ -179,7 +179,7 @@
// Match /person/related/GUID
$this->_request_switch['person_related'] = array
- (
+ (
'handler' => array('org_openpsa_contacts_handler_person', 'person'),
'fixed_args' => array('person', 'related'),
'variable_args' => 1,
@@ -187,7 +187,7 @@
// Match /person/GUID/action
$this->_request_switch[] = array
- (
+ (
'handler' => array('org_openpsa_contacts_handler_person', 'person_action'),
'fixed_args' => 'person',
'variable_args' => 2,
@@ -195,7 +195,7 @@
// Match /debug
$this->_request_switch[] = array
- (
+ (
'handler' => 'debug',
'fixed_args' => 'debug'
);
More information about the midcom-commits
mailing list