Browse Source

Packaged widgets and corrected events list.

pull/5/head
Etenil 15 years ago
parent
commit
9f11e2a11d
  1. 6
      documentation/movim.texi
  2. 11
      index.php
  3. 2
      system/Widget/widgets/Account/Account.php
  4. 2
      system/Widget/widgets/Chat/Chat.php
  5. 2
      system/Widget/widgets/Config/Config.php
  6. 2
      system/Widget/widgets/Friendinfos/Friendinfos.php
  7. 2
      system/Widget/widgets/Friends/Friends.php
  8. 2
      system/Widget/widgets/Log/Log.php
  9. 2
      system/Widget/widgets/Logout/Logout.php
  10. 2
      system/Widget/widgets/Poller/Poller.php
  11. 2
      system/Widget/widgets/Profile/Profile.php
  12. 2
      system/Widget/widgets/Wall/Wall.php

6
documentation/movim.texi

@ -229,11 +229,13 @@ is the name of the event as a string.
The XMPP subsystem currently raises the following events:
@table @code
@item postdisconnect
@item postdisconnected
Event that is triggered immediately after the account has been
disconnected on the user's request.
@item incomingemptybody
A message that comes in without body. This is typically a presence ping.
@item myvcardreceived
Your vcard was received.
@item vcardreceived
The user's vcard was received. @code{$data} contains the vcard as a base64
encoded string.
@ -254,6 +256,8 @@ The XMPP subsystem currently raises the following events:
A contact is now marked as @emph{do not disturb}.
@item incomeonline
A contact is now online.
@item serverdisconnect
The server has gone offline.
@end table
One additional event type is availble: @code{allEvents}. This type of event is a

11
index.php

@ -26,7 +26,18 @@
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @mainpage
*
* Movim is an XMPP-based communication platform. It uses a widget-based UI
* system. A widget is a combination of server-side and client-side scripts that
* interact though a custom xmlrpc protocol.
*
* Movim's core is designed to ease the implementation of XMPP web-based clients,
* using massively asynchronous javascript and abstracting XMPP calls into an
* events-based API.
*/
ini_set('log_errors', 0);

2
system/Widget/widgets/Account/Account.php

@ -1,6 +1,8 @@
<?php
/**
* @package Widgets
*
* @file Chat.php
* This file is part of MOVIM.
*

2
system/Widget/widgets/Chat/Chat.php

@ -1,6 +1,8 @@
<?php
/**
* @package Widgets
*
* @file Chat.php
* This file is part of MOVIM.
*

2
system/Widget/widgets/Config/Config.php

@ -1,6 +1,8 @@
<?php
/**
* @package Widgets
*
* @file Wall.php
* This file is part of MOVIM.
*

2
system/Widget/widgets/Friendinfos/Friendinfos.php

@ -1,6 +1,8 @@
<?php
/**
* @package Widgets
*
* @file Friendinfos.php
* This file is part of MOVIM.
*

2
system/Widget/widgets/Friends/Friends.php

@ -1,6 +1,8 @@
<?php
/**
* @package Widgets
*
* @file Friends.php
* This file is part of MOVIM.
*

2
system/Widget/widgets/Log/Log.php

@ -1,6 +1,8 @@
<?php
/**
* @package Widgets
*
* @file Log.php
* This file is part of MOVIM.
*

2
system/Widget/widgets/Logout/Logout.php

@ -1,6 +1,8 @@
<?php
/**
* @package Widgets
*
* @file Logout.php
* This file is part of MOVIM.
*

2
system/Widget/widgets/Poller/Poller.php

@ -1,6 +1,8 @@
<?php
/**
* @package Widgets
*
* @file Chat.php
* This file is part of MOVIM.
*

2
system/Widget/widgets/Profile/Profile.php

@ -1,6 +1,8 @@
<?php
/**
* @package Widgets
*
* @file Profile.php
* This file is part of MOVIM.
*

2
system/Widget/widgets/Wall/Wall.php

@ -1,6 +1,8 @@
<?php
/**
* @package Widgets
*
* @file Chat.php
* This file is part of MOVIM.
*

Loading…
Cancel
Save