Petr Skoda
a685593466
MDL-21233 moodle_url improvemewnts, code simplification, more diagnostics; fixed several regressions
2010-01-16 15:39:56 +00:00
Petr Skoda
78946b9bdb
MDL-20204 first batch of major theme changes, some regressions are still there, expect more changes and improvements soon; see tracker for details and list of subtasks
2009-12-16 18:00:58 +00:00
Petr Skoda
e7521559ed
MDL-20700 coding style cleanup - cvs keywords removed, closign php tag removed, trailing whitespace cleanup
2009-11-01 13:17:47 +00:00
samhemelryk
eb588b22ab
mod-chat MDL-19804 Added PAGE->set_url calls and removed deprecated functions
2009-09-23 07:08:43 +00:00
tjhunt
c13a5e71cc
moodle_page: MDL-12212 start of new moodle_page class
...
* has course and status fields
* $PAGE->status updated by print_header and footer
* $PAGE->set_course now replace course_setup function
* global $PAGE created in setup.php
* unit tests for functionality so far
* Moodle still seems to work after this commit!
2009-05-06 08:29:22 +00:00
dongsheng
f298a6255c
"Chat Module, refreshing in safari fixed, merged from 1.9, MDL-16878"
2008-10-14 08:39:55 +00:00
dongsheng
6e5f40eadc
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
2008-07-24 03:15:03 +00:00
dongsheng
f836189a70
"MDL-8642, see tracker, merged from MOODLE_19_STABLE"
2008-06-25 02:18:55 +00:00
dongsheng
4ee00a30cf
"MDL-8642, setting of auto scrolling, merged from MOODLE_19_STABLE"
2008-06-18 04:06:11 +00:00
dongsheng
5537bb044b
"MDL-12304, fix double text merged from MOODLE_19_STABLE"
2008-06-18 03:18:22 +00:00
dongsheng
282fd2b21a
"MDL-12304, fix double text, merged from MOODLE_18_STABLE"
2008-06-10 05:17:49 +00:00
skodak
d3bf6f92f6
MDL-15104 chat dml conversion
2008-06-08 15:49:36 +00:00
dongsheng
2f52a088bf
"MDL-14129, fix print_error"
2008-06-06 08:46:48 +00:00
dongsheng
5a2a53316f
MDL-14129, remove all the other error() call
2008-04-04 02:54:20 +00:00
skodak
a86840ecc9
do not optimise the $USER fetching - it was broken by mnethostid and would be again in future
2007-10-09 13:43:51 +00:00
skodak
9152fc9938
MDL-8323 finished full conversion to proper $COURSE global - no more $CFG->coursetheme, $CFG->courselang - improved course_setup(), current_language() and current_theme(); and Chameleon theme fixes needed for global $COURSE
...
MDL-7962 chat seems to be completely broken in head (fixed wrong JS)
* reworked chat themes support
MDL-8338 Cron does not need cookies
MDL-8339 forum cron capabilities problems
* minor deprecated function current_encoding() cleanup
2007-01-28 21:18:08 +00:00
skodak
4702be4ef7
MDL-8028 Add separate addslashes_js function for javascript quoting
2007-01-01 13:26:20 +00:00
moodler
0cdf34fb03
Fixed lots of XHTML errors but still not working correctly in Strict
2006-12-22 05:42:36 +00:00
skodak
810944af7f
we are going 100% unicode now - removed use of $CFG->unicodedb and current_charset(); MDL-7439 - part 2, only hotpot and wiki left
2006-11-11 17:23:20 +00:00
martinlanghoff
a6d1886fa5
mod/chat: Normal method -- collate 2 SELECTs into one
...
We really don't need to ask about the user table _twice_ here. Just ask for the
right fields, and done.
2006-04-17 21:06:28 +00:00
martinlanghoff
46c859760c
mod/chat: Normal method -- faster, lighter DB updates
...
Use set_field() keyed on PK instead of update_record() or set_field()
keyed on non-PKs.
2006-04-17 21:05:51 +00:00
martinlanghoff
dfd1d9e272
mod/chat - Normal method now support HTTP Keep-Alive
...
By using output buffering, we now support HTTP Keep-Alive, which means
that each client gets tightly bound to a single apache child - this means
that we get
+ lower resource usage on the webserver
+ _much_ lower resource usage on webserver and dbserver if pconnects are used
+ a good case for further caching (memcache/mmcache)
Using ab via localhost or fast LAN using keepalives is actually slower from the
client perspective -- still lighter on the server. Via slower links (DSL/modem)
the responses are faster.
2006-04-17 21:04:19 +00:00
martinlanghoff
4d5525c650
mod/chat: make http-chat more database friendly and change msg insertion to use POST
...
+ we are now more conservative in the fields it asks from the db
+ also more conservative with upates to chat_users
+ messages are now added via POST requests instead of GET
2006-04-17 21:03:44 +00:00
moodler
16ad40e145
Fix for chat character sets bug 5010
2006-04-16 16:01:40 +00:00
skodak
107e7612b5
short php tags once more
2006-03-07 21:46:34 +00:00
stronk7
b49f9e8932
And chat is using current_charset() too.
...
Merged from MOODLE_16_UTF8. Abandoning the branch.
2006-01-05 16:31:29 +00:00
stronk7
aa5c32fda7
Extended theme support to the chat window. Bug 3376.
...
(http://moodle.org/bugs/bug.php?op=show&bugid=3376 )
Merged from MOODLE_15_STABLE
2005-09-10 22:57:21 +00:00
moodler
b9795750e5
Er, last fix was in wrong frame. :-)
2005-02-25 12:35:20 +00:00
moodler
18212a7afe
Try to make all links "pop out" of the frame
2005-02-25 12:28:02 +00:00
skodak
68eb9f32e4
added style sheet to message panel
2005-02-13 16:30:16 +00:00
skodak
2debdf0476
FF issue seems to be solved by explicit call to document.close()
2005-02-10 19:25:42 +00:00
skodak
a32c7772c6
fixed deleting of old users when using chatd, other minor fixes, reverting of changes in chatmsg - found some weird problems in FF
2005-02-10 19:14:53 +00:00
skodak
a776c371e7
fixed typos in chat_force_language(), added encoding to message page, minor cleanup
2005-02-08 21:23:19 +00:00
skodak
3dfd307fe0
maybe fixed double posts, fixed javascript errors, solved problems with reloading
2005-02-07 20:33:44 +00:00
skodak
516121bd0d
radical chat clean up, see forum for details
2005-02-03 20:39:27 +00:00
gustav_delius
8f0cd6ef0f
Resolved problems with previous replacement of
...
& to & and fixed redirect() to entity encode the
inut where needed.
Julian Sedding
2004-09-21 11:41:58 +00:00
gustav_delius
839f2456bb
XHTML compliance
...
- fixed (hopefully) all <img> tags
- global replace on <br> to <br />
- & in URLs
- got the forum module XHTML compliant
Julian Sedding
2004-09-16 17:13:57 +00:00
gustav_delius
1c61c8d6bc
fixed capitalization and quoting of attribute values
2004-09-12 15:06:29 +00:00
moodler
84a2fdd706
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.
2004-02-24 06:35:57 +00:00
moodler
62a575d157
Chat room text is now filtered
2004-02-16 17:39:05 +00:00
moodler
b5012f3eb5
COnfiguration variables can now be edited via GUI
2003-08-23 14:03:14 +00:00
moodler
d2c538f1fb
No need for body colour
2003-07-25 08:18:27 +00:00
moodler
7d494f1c2e
Need to escape slashes here
2003-07-10 06:38:02 +00:00
moodler
7d79236935
Simple beeping is now added ... users can now beep each other
...
and also beep everyone using "beep all"
There are no controls as yet to disable beeping on a per-user
basis but this would come next
2003-07-09 12:53:26 +00:00
moodler
f7e648da70
Some minor improvements
2003-07-07 09:45:08 +00:00
moodler
1515a89e2d
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.
2003-07-07 06:44:16 +00:00