qweb icon indicating copy to clipboard operation
qweb copied to clipboard

Ajaxterm unable to render anything

Open ygoe opened this issue 10 years ago • 6 comments

It used to work, but today, I only get a grey screen with the status line at the top. The login and password is handled correctly, but displayed in one line, black on grey, in variable-width font. After login, all texts appear anywhere but not left-aligned. (Firefox 34 and Chrome, Windows) Nothing to see in Firebug's console, apart from the Ajax requests.

In Internet Explorer 11 nothing happens at all. No login possible, no blinking box.

This project seems dead by now.

ygoe avatar Dec 05 '14 18:12 ygoe

Same here. I solved this by modifying ajaxterm.js:

@line 49:
---var dterm=document.createElement('div');
+++var dterm=document.createElement('pre');

@line 292:
---dstat.className='stat';
+++dstat.className='stat';
+++dterm.className='term';

BR

Nippey avatar Mar 31 '15 06:03 Nippey

Anyone solved the problem with IE11?

I applied the patches above, and I get better rendering in chrome, but IE11 loads the status bar, but no prompt or connection going.

jarossi avatar May 27 '15 03:05 jarossi

Co-Worker Glenn managed to get it going with IE11 using a recent version of the sarissa.js library.

http://sourceforge.net/projects/sarissa/?source=typ_redirect and per http://dev.abiss.gr/sarissa/installation.html

Note the updated js is quite a lot different.

jarossi avatar May 27 '15 23:05 jarossi

Nippey, thanks for the patch. Works on ajaxterm 0.10-13 from ubuntu 15.10.

drewp avatar Nov 30 '15 11:11 drewp

I started an unofficial 0.9.9.7-SNAPSHOT branch of Sarissa on GitHub, due to a lack of activity on the upstream project on SourceForge. Should you have (or know of) any patches for Sarissa that have not yet made it upstream to their CVS repo, I would love to collect them for inclusion into my branch at https://github.com/volkertb/sarissa/tree/0.9.9.7-SNAPSHOT

Sorry if I intruded! I just read about so many people having problems with Sarissa, like me, and I would hate to see any wheels being reinvented. Thanks for your time and keep up the good work on your projects! :-)

volkertb avatar Mar 20 '16 13:03 volkertb

Hello,

Achilterm is an Ajaxterm fork without Sarissa dependency, it could be a good choice https://github.com/fgallaire/achilterm

Cheers

fgallaire avatar Jul 25 '16 22:07 fgallaire