Revision [6272]

This is an old revision of JeroenJansen made by JeroenJansen on 2005-02-23 20:18:14.

 

Hello, my name is Jeroen. Im a MSc. student information sciences at Tilburg University, the Netherlands.
Im working on my graduation thesis which is about wiki usage in higher education.

Please leave a message after the beep (which you'll hear eventually if you listen long enough).




Draft. Recently edited social awareness functionality


Patch description
If you open a WikiPage in edit mode (invoke the edit page handler),
a display of social awareness information might come in handy (eg. for collaboration purposes).
This patch displays an overview of users who recently opened the WikiPage in edit mode, on a per-page basis.

If you want this functionality you need to do the following:

1. Create new table to log necessary information.

CREATE TABLE yourprefix_log (
  id INT(11) UNSIGNED NOT NULL AUTO_INCREMENT,
  handler VARCHAR(30) NOT NULL DEFAULT '',
  tag VARCHAR(75) NOT NULL DEFAULT '0',
  username VARCHAR(255) NOT NULL DEFAULT '',
  accessed_at datetime NOT NULL,
  PRIMARY KEY  (id)
) TYPE=MyISAM;


2. Patch edit page handler, handler/page/edit.php

 



CategoryUsers
Valid XHTML :: Valid CSS: :: Powered by WikkaWiki