Log of /moodle/mod/chat/gui_header_js/index.php
Parent Directory
Revision
1.32 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Thu Jul 24 11:15:03 2008 WST (19 months, 3 weeks ago) by
dongsheng
Branch:
MAIN
Changes since
1.31: +3 -3 lines
Diff to
previous 1.31
MDL-14650, create a new table `chat_messages_current` to save latest 8 hours messages, could improve performance. The expired message will be deleted in chat_cron function
Revision
1.24.2.2 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Wed May 16 02:26:55 2007 WST (2 years, 10 months ago) by
skodak
Branch:
MOODLE_18_STABLE
CVS Tags:
MOODLE_181,
MOODLE_1810,
MOODLE_1811,
MOODLE_182,
MOODLE_183,
MOODLE_184,
MOODLE_185,
MOODLE_186,
MOODLE_187,
MOODLE_188,
MOODLE_189,
MOODLE_18_MERGED,
MOODLE_18_WEEKLY
Changes since
1.24.2.1: +2 -2 lines
Diff to
previous 1.24.2.1
, to
branch point 1.24
, to
next main 1.37
MDL-9780 Groups 181 cleanup - part 2
Revision
1.24.2.1 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Wed Feb 28 14:36:19 2007 WST (3 years ago) by
nicolasconnault
Branch:
MOODLE_18_STABLE
CVS Tags:
MOODLE_18
Changes since
1.24: +2 -2 lines
Diff to
previous 1.24
Fixed MDL-8582
Not sure if the hotpot module is converting ampersands correctly. $heading and $title are set up differently than in other modules: instead of outputting $course->title, a temporary $title variable is created and assigned that value. That made it difficult for me to decide whether it was already formatted elsewhere or not.
Also I didn't format_string() any of the variables included in $navigation rings, because I assume these strings get processed by print_navigation(), which includes format_string().
Revision
1.22 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Tue Aug 29 16:43:59 2006 WST (3 years, 6 months ago) by
toyomoyo
Branch:
MAIN
CVS Tags:
MOODLE_17,
MOODLE_171,
MOODLE_172,
MOODLE_173,
MOODLE_174,
MOODLE_175,
MOODLE_176,
MOODLE_177,
MOODLE_17_BETA,
MOODLE_17_BETA2,
MOODLE_17_MERGED,
MOODLE_17_WEEKLY
Branch point for:
MOODLE_17_STABLE
Changes since
1.21: +2 -2 lines
Diff to
previous 1.21
adding some capabilities
Revision
1.21 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Mon Aug 14 13:55:42 2006 WST (3 years, 7 months ago) by
moodler
Branch:
MAIN
CVS Tags:
MOODLE_17_NEWGROUPS_PRE
Branch point for:
MOODLE_17_NEWGROUPS
Changes since
1.20: +2 -6 lines
Diff to
previous 1.20
SWEEPING CLEANUP
The API was changed slightly so that has_capability now takes the
whole $context object (we almost always have it anyway)
The $kill thing was removed. If you want to assert a capability
then use:
require_capability('capname', $context);
with optional variables to modify the error message
Misc bugs here and there also removed and code tidied
Revision
1.19 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Tue Aug 8 13:13:14 2006 WST (3 years, 7 months ago) by
moodler
Branch:
MAIN
Changes since
1.18: +8 -4 lines
Diff to
previous 1.18
ROLES AND PERMISSIONS - FIRST CHECK-IN
=======================================
WARNING: DEV IS CURRENTLY VERY UNSTABLE.
This is a mega-checkin of the new Roles system. A lot of changes have
been made in core and modules.
Currently there are a lot of rough edges and known problems. We are
working hard on these .. .the reason for getting this into HEAD at this
stage is enable us to move faster (our branch was diverging from HEAD
too much).
Please keep an eye on http://docs.moodle.org/en/Roles for current status
and information for developers on how to use the new Roles system.
Revision
1.18 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Wed Apr 19 10:20:48 2006 WST (3 years, 11 months ago) by
martinlanghoff
Branch:
MAIN
CVS Tags:
MOODLE_16,
MOODLE_161,
MOODLE_162,
MOODLE_163,
MOODLE_164,
MOODLE_165,
MOODLE_166,
MOODLE_167,
MOODLE_168,
MOODLE_169,
MOODLE_16_BETA,
MOODLE_16_MERGED,
MOODLE_16_WEEKLY
Branch point for:
MOODLE_16_STABLE,
MOODLE_17_ROLES
Changes since
1.17: +7 -2 lines
Diff to
previous 1.17
mod/chat: Normal method - introducing "Stream" updates.
This is an alternative version of jsupdate.php that acts
as a long-running daemon. It will feed/stall/feed JS updates
to the client. From the module configuration select "Stream"
updates.
The client connection is not forever though. Once we reach
CHAT_MAX_CLIENT_UPDATES (currently 1000), it will force
the client to re-fetch it.
This buys us all the benefits that chatd has, minus the setup,
as we are using apache to do the daemon handling.
Chat still defaults to the normal update method, which is now
optimised to take advantage of keepalives -- so this change is
safe. The instructions in the config page also indicate that this
mode may not be well supported everywhere. It hasn't been
tested on IIS for starters.
In terms of relative cost -- if each hit on jsupdate.php incurs
on ~20 db queries and delivers one update to the client, each hit
on jsupdate takes ~20 queries, and then roughly 2~3 queries to
serve each of the next 1000 updates. On busy sites, the difference
is huge.
There is still room for enhancements in both keepalive and stream
update methods. I am pretty sure we can trim DB queries more.
Revision
1.17 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Fri Jan 6 00:31:29 2006 WST (4 years, 2 months ago) by
stronk7
Branch:
MAIN
Changes since
1.16: +2 -2 lines
Diff to
previous 1.16
And chat is using current_charset() too.
Merged from MOODLE_16_UTF8. Abandoning the branch.
Revision
1.16 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Sun Mar 27 19:36:54 2005 WST (4 years, 11 months ago) by
stronk7
Branch:
MAIN
CVS Tags:
MOODLE_15,
MOODLE_151,
MOODLE_152,
MOODLE_153,
MOODLE_154,
MOODLE_15_BETA,
MOODLE_15_MERGED,
MOODLE_16_AUTHREFACTOR_PRE,
MOODLE_16_MULTIENROL_MP1,
MOODLE_16_MULTIENROL_PRE,
MOODLE_16_UTF8_PRE
Branch point for:
MOODLE_15_STABLE,
MOODLE_16_AUTHREFACTOR,
MOODLE_16_MULTIENROL,
MOODLE_16_UTF8
Changes since
1.15: +2 -2 lines
Diff to
previous 1.15
Now chat->name works under filterall.
Revision
1.15 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Wed Feb 16 18:40:37 2005 WST (5 years, 1 month ago) by
gustav_delius
Branch:
MAIN
Changes since
1.14: +2 -2 lines
Diff to
previous 1.14
In order to ensure that when a teacher hides a resource or an activity that students really can't get at it, even if they know the direct links to its pages, I have given an optional third argument $cm to the functions require_login() and require_course_login(). Pages showing information about a particular course module now pass the course module object in this third argument. The login functions will then test if either the course module is visible or the user is a teacher. If neither is the case then the user is redirected to the course homepage after being shown a message "Sorry, this activity is currently hidden".
(While I was at it I also turned the autologinguests off for most module pages, except on the index.php pages and the view.php pages for those modules that allow guests)
Revision
1.14 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Fri Feb 11 03:14:51 2005 WST (5 years, 1 month ago) by
skodak
Branch:
MAIN
Changes since
1.13: +2 -2 lines
Diff to
previous 1.13
fixed deleting of old users when using chatd, other minor fixes, reverting of changes in chatmsg - found some weird problems in FF
Revision
1.12 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Tue Feb 8 04:33:43 2005 WST (5 years, 1 month ago) by
skodak
Branch:
MAIN
Changes since
1.11: +2 -2 lines
Diff to
previous 1.11
maybe fixed double posts, fixed javascript errors, solved problems with reloading
Revision
1.10 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Fri Sep 17 01:13:21 2004 WST (5 years, 6 months ago) by
gustav_delius
Branch:
MAIN
Changes since
1.9: +1 -1 lines
Diff to
previous 1.9
XHTML compliance
- fixed (hopefully) all <img> tags
- global replace on <br> to <br />
- & in URLs
- got the forum module XHTML compliant
Julian Sedding
Revision
1.8 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Thu Apr 8 23:12:35 2004 WST (5 years, 11 months ago) by
moodler
Branch:
MAIN
CVS Tags:
MOODLE_13,
MOODLE_131,
MOODLE_134,
MOODLE_135,
MOODLE_13_MERGED,
MOODLE_14,
MOODLE_141,
MOODLE_142,
MOODLE_143,
MOODLE_144,
MOODLE_145,
MOODLE_14_BETA,
MOODLE_14_MERGED,
MOODLE_14_RESOURCE_PRE,
MOODLE_15_LDAP_PRE,
Moodle_13_Beta,
Moodle_13_pre14merge,
PREBLOCKS
Branch point for:
MOODLE_13_STABLE,
MOODLE_14_RESOURCE,
MOODLE_14_STABLE,
MOODLE_15_LDAP,
Moodle_14_dev
Changes since
1.7: +2 -2 lines
Diff to
previous 1.7
Fixes when displaying lists of users in group mode
Revision
1.5 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Tue Feb 24 14:35:57 2004 WST (6 years ago) by
moodler
Branch:
MAIN
Changes since
1.4: +49 -27 lines
Diff to
previous 1.4
Preliminary support for groups in Chat.
It's not well tested yet - I'm hoping to do some testing on moodle.org
with some real people and get this refined enough for the Beta release
later today.
Revision
1.1 -
(
view)
(
download)
(
annotate)
-
[select for diffs]
Mon Jul 7 14:44:16 2003 WST (6 years, 8 months ago) by
moodler
Branch:
MAIN
Very early version of new chat module, made by Martin using ARSC as
an inspiration.
Works OK already on most newish browsers .. see mod/chat/README.txt for details.
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.