~azzar1/unity/add-show-desktop-key

  • Committer: wagrant
  • Date: 2008-12-20 03:46:56 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:1060
Make IVLE work fine in Firefox 3.1 (ie. Gecko/XULRunner 1.9.1). Gecko 1.9.1 has
a built-in JSON object, so our json2.js isn't used, and compatibility problems
arise. The only one significant to us is that Gecko's doesn't support having
a primitive as the root object. Unfortunately we use that sort of thing in a
few places, so IVLE ends up pretty much broken.

A few adjustments were needed both client- and server-side for proto changes:

 - consoleservice and the JS interacting with it now deal with the key returned
   by start_server in a dict like {'key': ...}.
 - tutorialservice and interacting JS deal with code returned by getattempt in
   a dict like {'code': ...}.


The JS repr() implementation used JSON.stringify on the given object, and was
used only with primitive objects in order to create function calls. This needed
to be eliminated for compatibility with the new Gecko, so these call
constructions were replaced with better events:

 - listing.js constructed events for generated file listings by repr()ing some
   strings. That is foul, so we instead use DOM operations from 'this' in a
   somewhat nicer event handler.
 - tutorial.js previously created save_exercise() call strings by repr()ing
   lots of stuff. That was really bad, and broke like the rest. I replaced it
   with something that's still bad, but not quite as awful - grabbing the call
   string from the save button. This should be fixed at some point.
 - console.js had some strange Firebug logging stuff which used repr(). I
   removed it, as it shouldn't have been in released code in the first place.

repr() itself was removed after all references were.
   
Filename Latest Rev Last Changed Committer Comment Size
..
__init__.py 409 17 years ago mattgiuca Moved www/conf and www/common to a new directory l Empty Diff Download File
caps.py 981 16 years ago dcoles Groups: Added in support for creating groups in th 5.3 KB Diff Download File
cgirequest.py 851 16 years ago wagrant Give CGIRequest an exception handler which turns a 11.9 KB Diff Download File
chat.py 1020 16 years ago wagrant common.chat.chat: Unbreak messages longer than 1Ki 4.2 KB Diff Download File
console.py 1046 16 years ago wagrant common.console: Use os.spawnv rather than os.syste 11 KB Diff Download File
date.py 892 16 years ago wagrant fileservice_lib: Give date pretty-printing functio 2.4 KB Diff Download File
db.py 1045 16 years ago wagrant common.db: Order offering members by login. 47.8 KB Diff Download File
forumutil.py 975 16 years ago dcoles Cookies: We now invalidate (expire and blank) all 1.4 KB Diff Download File
interpret.py 1052 16 years ago wagrant common.interpret.execute_cgi: Don't read stdin if 16.3 KB Diff Download File
makeuser.py 1048 16 years ago wagrant setup.setuputil: Remove action_linktree (it was un 13.8 KB Diff Download File
studpath.py 724 16 years ago dcoles public mode: Backend changes to enable public mode 6 KB Diff Download File
svn.py 889 16 years ago wagrant common.svn: Add a method to check if a path has th 2.3 KB Diff Download File
testfilespace.py 1041 16 years ago dcoles Library: Contains the files for the test file spac 7.4 KB Diff Download File
user.py 669 17 years ago mattgiuca Timestamps are now stored within the program as Py 4.2 KB Diff Download File
util.py 1033 16 years ago wagrant python-console: Move incomplete_utf8_sequence() in 9.6 KB Diff Download File
zip.py 763 16 years ago mattgiuca Zip file uploading now works. (Patch submitted by 4.3 KB Diff Download File