Log of /contributions/modules/chatroom/chatroom.js
Parent Directory
|
Revision Log
|
Revision Graph
Revision
1.50.4.20 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Sat Nov 14 22:01:21 2009 UTC
(10 days, 19 hours ago)
by
justinrandell
Branch:
DRUPAL-6--2
Changes since
1.50.4.19: +74 -52 lines
Diff to
previous 1.50.4.19
, to
branch point 1.50
make it easier to ban and kick users. add a framework to add links and functionality to the user list. clean up the UI a bit, archive chat button is missing, but will return. lots of general clean ups, make kicking and banning more robust. once this settles a bit, i'll release another beta
Revision
1.50 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Wed Oct 29 06:37:38 2008 UTC
(12 months, 3 weeks ago)
by
coreymitchell
Branch:
MAIN
CVS Tags:
DRUPAL-6--1-0-BETA10,
DRUPAL-6--1-0-BETA2,
DRUPAL-6--1-0-BETA3,
DRUPAL-6--1-0-BETA4,
DRUPAL-6--1-0-BETA5,
DRUPAL-6--1-0-BETA6,
DRUPAL-6--1-0-BETA7,
DRUPAL-6--1-0-BETA8,
DRUPAL-6--1-0-BETA9,
DRUPAL-6--1-1-BETA1
Branch point for:
DRUPAL-6--1,
DRUPAL-6--2
Changes since
1.49: +484 -498 lines
Diff to
previous 1.49
#234636
Revision
1.49
Wed Mar 7 16:59:21 2007 UTC
(2 years, 8 months ago)
by
darrenoh
Branch:
MAIN
Changes since
1.48: +1 -1 lines
FILE REMOVED
Removed files from HEAD to avoid duplicating the DRUPAL-5 branch.
Revision
1.43.2.6 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Fri Feb 23 19:42:27 2007 UTC
(2 years, 9 months ago)
by
darrenoh
Branch:
DRUPAL-4-7
Changes since
1.43.2.5: +7 -3 lines
Diff to
previous 1.43.2.5
, to
branch point 1.43
Used drupal_to_js to initialize JavaScript variables.
Made sure both cache timestamp and current time are sent on each update.
Added test intended to prevent join and leave messages from being generated within 5 seconds of the cache timestamp (it doesn't work; see #120629).
Revision
1.43.2.5 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Thu Feb 8 17:54:32 2007 UTC
(2 years, 9 months ago)
by
darrenoh
Branch:
DRUPAL-4-7
CVS Tags:
DRUPAL-4-7--1-7
Changes since
1.43.2.4: +7 -3 lines
Diff to
previous 1.43.2.4
, to
branch point 1.43
The chat panel would show all on-line users as joining and off-line users as leaving on first update request. This was because users do not update their status unless the cache file timestamp has been updated. I fixed this by suppressing the display of join and leave messages for the first five updates.
Revision
1.46
Mon Oct 16 23:24:34 2006 UTC
(3 years, 1 month ago)
by
darrenoh
Branch:
MAIN
Changes since
1.45: +1 -1 lines
FILE REMOVED
Committing a new set of files for the next generation of Drupal chat.
Revision
1.36 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Mon Jul 24 21:21:38 2006 UTC
(3 years, 4 months ago)
by
justinrandell
Branch:
MAIN
Changes since
1.35: +2 -2 lines
Diff to
previous 1.35
committing not quite finished implementation of adding one-on-one chats via sitewide who is online list, because there are lots of changes, and i don't want paulo to get too out of sync.
Revision
1.31 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Sat Jul 22 05:33:59 2006 UTC
(3 years, 4 months ago)
by
justinrandell
Branch:
MAIN
Changes since
1.30: +81 -38 lines
Diff to
previous 1.30
- added configurability to the "* Sent at <time>" msgs
- added kick user functionality - still needs some polish though
- refactored ajax js and response code to use object names and arrays
- refactored "* Sent at <time>" js to use setTimeout/clearTimeout
Revision
1.19 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Fri Jul 14 06:38:17 2006 UTC
(3 years, 4 months ago)
by
justinrandell
Branch:
MAIN
Changes since
1.18: +15 -7 lines
Diff to
previous 1.18
added away and back message support in js.
changed user list function to return current user at top of list.
Revision
1.14 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Thu Jul 13 08:13:01 2006 UTC
(3 years, 4 months ago)
by
justinrandell
Branch:
MAIN
Changes since
1.13: +75 -33 lines
Diff to
previous 1.13
some general fixes.
rework of smiley support to get rid of sending html to the browser and using innerHTML.
Revision
1.6 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Sun Jul 2 05:43:34 2006 UTC
(3 years, 4 months ago)
by
justinrandell
Branch:
MAIN
Changes since
1.5: +101 -18 lines
Diff to
previous 1.5
added first hacky implementation of '/msg' and '/me'. code is not the cleanest and UI could do with some work. usage:
/msg <username> <msg text>
the following message will show up in <user_name>'s chat only:
[<time>] <sending_username> private: <msg text>
/me <msg text>
will show up italicised in all users chats:
* <username> <msg text>
Revision
1.5 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Fri Jun 30 02:13:35 2006 UTC
(3 years, 4 months ago)
by
justinrandell
Branch:
MAIN
Changes since
1.4: +17 -9 lines
Diff to
previous 1.4
changed code again, sending module path and chatroom cache file to brower, so can avoid session bootstrap on cache hit again. applied changes to make a query compatible with mysql 3.23 - thanks pacheco (http://drupal.org/node/70949). probably wont do much more until i've got the port to jQuery done
Revision
1.3 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Wed Jun 28 01:06:05 2006 UTC
(3 years, 4 months ago)
by
justinrandell
Branch:
MAIN
Changes since
1.2: +4 -3 lines
Diff to
previous 1.2
fixed the display of last message. further speed ups - write messages use chatroomread.php, and no ajax operations incur more than a drupal session bootstrap
Revision
1.1 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Sun Jun 25 10:44:30 2006 UTC
(3 years, 5 months ago)
by
justinrandell
Branch:
MAIN
Initial commit of Drupal 4.7 chatroom module.
This is alpha code - do not use on sites you care about.
This form allows you to request diffs between any two revisions of this file.
For each of the two "sides" of the diff,
select a symbolic revision name using the selection box, or choose
'Use Text Field' and enter a numeric revision.