antonylesuisse/qweb

Ajaxterm unable to render anything

Opened this issue · 6 comments

ygoe commented

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.

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

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.

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.

drewp commented

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

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! :-)

Hello,

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

Cheers