- Timestamp:
- Dec 21, 2009, 1:11:31 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
package_branches/invirt-web/ajaxterm-rebased/code/static/ajaxterm/ajaxterm.js
r2747 r2752 1 1 ajaxterm={}; 2 ajaxterm.Terminal_ctor=function(id, width,height) {2 ajaxterm.Terminal_ctor=function(id,machine_id) { 3 3 var ie=0; 4 4 if(window.ActiveXObject) 5 5 ie=1; 6 var sid=""+Math.round(Math.random()*1000000000);7 var query0=" s="+sid+"&w="+width+"&h="+height;6 var base_path="machine/"+machine_id+"/at"; 7 var query0=""; 8 8 var query1=query0+"&c=1&k="; 9 9 var buf=""; … … 104 104 var query=query1+send; 105 105 if(opt_get.className=='on') { 106 r.open("GET", "u?"+query,true);106 r.open("GET",base_path+"?"+query,true); 107 107 if(ie) { 108 108 r.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT"); 109 109 } 110 110 } else { 111 r.open("POST", "u",true);111 r.open("POST",base_path,true); 112 112 } 113 113 r.setRequestHeader('Content-Type','application/x-www-form-urlencoded'); … … 274 274 init(); 275 275 } 276 ajaxterm.Terminal=function(id, width,height) {277 return new this.Terminal_ctor(id, width,height);276 ajaxterm.Terminal=function(id,machine_id) { 277 return new this.Terminal_ctor(id,machine_id); 278 278 } 279 279
Note: See TracChangeset
for help on using the changeset viewer.